Platforms

Section 30.1

Agentic systems run on top of LLM API platforms (Chapter 16) plus a new layer: agent-native protocols and runtimes that did not exist as standardized infrastructure before 2024.

The 2026 agent platform stack. Each layer is open-standard or open-source, and most modern frameworks pick one piece per layer (e.g., LangGraph + MCP + E2B + LangSmith). Knowing which layer a tool lives in prevents the classic mistake of comparing an observability SaaS to an agent runtime.
Figure 30.1.1: The 2026 agent platform stack. Each layer is open-standard or open-source, and most modern frameworks pick one piece per layer (e.g., LangGraph + MCP + E2B + LangSmith). Knowing which layer a tool lives in prevents the classic mistake of comparing an observability SaaS to an agent runtime.

30.1.1 Agent-native protocols

30.1.2 Agent platforms

30.1.2.5 Computer-Use APIs and the platform race

The 2024-25 platform race for "agent that drives a real computer" is worth treating as its own category, because the platform you pick locks you into a vendor lineage. Anthropic's Computer Use API (Oct 2024) was the first GA frontier model with screenshot-and-control loop integration. OpenAI Operator / Computer Use Agent (Jan 2025) is OpenAI's competing platform. Google's Project Mariner and Project Astra demos extend the same pattern to long-running browser tasks. The platform categorization that matters in 2026: OS-level (Anthropic CU runs anywhere a screenshot can be taken), browser-level (Operator and Mariner target the browser specifically), and API-level (agent calls structured APIs only, no UI). The Operator launch (Jan 2025) and the simultaneous Anthropic Skills system are the two case-study events that grounded the agent-platform race.

Skills (Anthropic, 2024-25) are an MCP-adjacent abstraction: a Skill is a self-contained directory of instructions, code, and resources that an agent can dynamically load when it recognizes a relevant task. Treat skills as the agent-side complement to MCP's tool registry. The community is consolidating around two registries: mcp.so and glama.ai/mcp, both of which index publicly-available MCP servers.

30.1.3 Comparing the platforms

Table 30.1.1a: 30.1.1 Agent platforms (2026).
Platform Owns Best for Caveat
MCP Tool-to-model protocol Standardized tool exposure Still evolving
LangSmith Tracing, eval LangChain users SaaS pricing
E2B Sandboxed code exec Code-interpreter agents Per-second pricing
Browserbase Managed browser sessions Browser-using agents Per-session pricing
Langfuse Open observability Self-hosted eval Less polished than LangSmith
Note: MCP changed the game

Before MCP, every agent framework had its own tool-registration format. After MCP (late 2024), any MCP-compliant tool works with any MCP-compliant model client. The protocol won faster than usual for an industry standard; treat it as the default for new tool development.

What's Next?

In the next section, Section 30.2: Libraries & Frameworks, we build on the material covered here.

Further Reading

Agent Platforms

OpenAI (2024). "Assistants API." platform.openai.com/docs/assistants/overview. Reference managed-agents platform.
Anthropic (2024). "Tool Use with Claude." docs.claude.com/agents-and-tools/tool-use. Reference tool-use API for agentic LLM systems.
LangGraph (2024). "LangGraph Documentation." langchain-ai.github.io/langgraph. Reference orchestration library for stateful agent graphs.