effort
Hand-write an MCP server: one tool handler per endpoint, mapping params and marshaling responses yourself.
Point a2a at the OpenAPI spec. Tool-per-operation agent and MCP server are generated for you.
Point a2a cloud at an OpenAPI or HTTP spec and it generates a hosted agent — one typed tool per operation — exposed as an MCP server and as A2A endpoints. Your whole API becomes callable by agents and MCP clients, with upstream auth and scoped grants handled for you. No per-endpoint glue code.
tool-per-operation · hosted MCP · scoped grants
To make an existing API usable by agents, teams hand-write an MCP server: a tool handler per endpoint, parameters mapped by hand, responses marshaled manually. It's tedious, it usually covers only the few endpoints someone had time for, and it drifts out of sync the moment the API changes. Then you still have to solve auth and figure out who's allowed to call what.
The spec already describes every operation, its parameters, and its responses. a2a cloud reads it and does the wrapping for you — the whole API, typed, hosted, and governed.
Give a2a cloud the URL or file of an OpenAPI (or plain HTTP) API. It reads the spec and generates a hosted agent that wraps the API — no glue code, no per-endpoint handlers to write by hand.
Each operation in the spec becomes a named, typed tool on the generated agent. Parameters, request bodies, and responses are derived from the spec's schemas, so the agent knows the shape of every call.
Every generated tool is also exposed as an MCP tool. The result is a hosted MCP server for the API — paste the endpoint into Claude, Cursor, or any MCP client and the operations show up as tools.
The same generated agent is A2A-native: it serves an agent card advertising the operations as skills, so other agents can discover and call the API through it — not just human-driven MCP clients.
Configure the upstream API's credentials once at the agent. Callers authenticate to a2a cloud; the platform holds the upstream key. Your API secrets don't get pasted into every MCP client or shared around.
Grant callers only the operations they need. A scoped grant can permit some skills and deny others, with an audience and TTL. Standard MCP `tools/call` executions on `/mcp` or `/_a2a/mcp` return signed evidence with the verified grant ID when present.
Hand-write an MCP server: one tool handler per endpoint, mapping params and marshaling responses yourself.
Point a2a at the OpenAPI spec. Tool-per-operation agent and MCP server are generated for you.
You wrap the two or three endpoints you had time for; the rest of the API stays inaccessible to the agent.
Every operation in the spec becomes a tool, so the whole API is available, not a hand-picked subset.
Parameter and response shapes are copied by hand and drift out of sync with the API over time.
Types are derived directly from the spec's schemas, so the agent's view matches the contract.
The upstream API key ends up embedded in client configs and passed around in plaintext.
Credentials live at the agent; callers authenticate to a2a cloud and never hold the upstream secret.
No record of which caller hit which endpoint, or whether they were even allowed to.
Scoped grants gate operations; Agent API, public /invoke, and standard MCP tools/call executions receive signed evidence.
On a2a cloud, you point the platform at your OpenAPI (or HTTP) spec by URL or file. It generates a hosted agent with one tool per operation, and exposes every tool as an MCP tool. The result is a hosted MCP server for your API that you can connect to Claude, Cursor, or any MCP client — no per-endpoint code to write.
If the API has an OpenAPI description — or a documented HTTP interface a2a can ingest — yes. Each operation becomes a typed tool on a generated agent, so the REST API becomes callable as an agent (via A2A) and as MCP tools, with auth and scoped grants layered on top.
Yes. The generator maps one operation in the spec to one named tool, deriving its parameters and response shape from the spec's schemas. That tool is exposed both as an A2A skill and as an MCP tool, so the granularity matches your API surface.
You configure the upstream API's credentials once at the generated agent. Callers authenticate to a2a cloud, and the platform holds and uses the upstream key on their behalf — so your API secret isn't pasted into every MCP client config or shared around in plaintext.
Yes. Scoped grants let you allow a caller only the operations they need and deny the rest, with an audience and TTL. Standard MCP `tools/call` executions on `/mcp` or `/_a2a/mcp` return an Ed25519-signed receipt that records the caller classification, operation, and verified grant ID when present. Discovery methods do not create execution receipts.
All guides live in the guides index.
Point a2a cloud at your OpenAPI or HTTP spec and get a hosted agent with one tool per operation across MCP and A2A surfaces. Scoped grants gate access, and Agent API, public `/invoke`, and standard MCP `tools/call` executions receive signed receipts. Connector MCP and formal A2A task routes are outside that skill-execution coverage.