AgentsPodium Hosting
Officialagent-gateway
Lets other AI agents drive AgentsPodium hosting (create/monitor/manage
instances) through two machine protocols — MCP (Streamable HTTP) and A2A
(Agent2Agent JSON-RPC) — both backed by the existing account API at
https://agentspodium.com/api.
The gateway holds no state and no secrets of its own. Every call carries
the caller's own AgentsPodium API key (Authorization: Bearer ak_live_..., or
a session token), which is forwarded verbatim to the account API. Missing
that header always answers 401 with a JSON body pointing at
https://agentspodium.com/account ("API keys for agents") and
https://hosting.defispace.com/docs/auth.
One process serves both hostnames, selected by the Host header wherever a
path is shared between the two (only GET /); everything else defaults to
MCP behaviour, and mcp.agentspodium.com / a2a.agentspodium.com route to
the same Deployment.
Run locally
npm install
npm run build
ACCOUNT_API=https://agentspodium.com/api PORT=3200 npm start
# or, for iteration:
npm run devEnv vars:
ACCOUNT_API— base URL of the account API (defaulthttps://agentspodium.com/api).PORT— HTTP port (default3200).A2A_HOST— hostname that selects A2A behaviour forGET /(defaulta2a.agentspodium.com).
Related MCP server: hivegate
Calling it
MCP — mcp.agentspodium.com/mcp
Streamable HTTP, stateless (no session id). Requires
Accept: application/json, text/event-stream.
# initialize
curl -s -X POST https://mcp.agentspodium.com/mcp \
-H "Authorization: Bearer ak_live_..." \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
-d '{
"jsonrpc": "2.0", "id": 1, "method": "initialize",
"params": {
"protocolVersion": "2025-06-18",
"capabilities": {},
"clientInfo": { "name": "example-client", "version": "0.1.0" }
}
}'
# call a tool
curl -s -X POST https://mcp.agentspodium.com/mcp \
-H "Authorization: Bearer ak_live_..." \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
-d '{
"jsonrpc": "2.0", "id": 2, "method": "tools/call",
"params": { "name": "list_platforms", "arguments": {} }
}'Tools: list_platforms, list_instances, create_instance,
get_instance_health, get_instance_term, set_llm_key, pause_instance,
resume_instance, rebuild_instance, delete_instance, get_payment_options,
set_peers, set_webhook. Plus one resource, agentspodium://docs (the hosting docs).
A2A — a2a.agentspodium.com/
curl -s https://a2a.agentspodium.com/.well-known/agent-card.json
# structured (data part)
curl -s -X POST https://a2a.agentspodium.com/ \
-H "Authorization: Bearer ak_live_..." \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0", "id": 1, "method": "message/send",
"params": {
"message": {
"parts": [{ "kind": "data", "data": { "skill": "create-instance", "params": { "engine": "hermes", "tier": "small", "name": "My Agent" } } }]
}
}
}'
# plain text (small command grammar)
curl -s -X POST https://a2a.agentspodium.com/ \
-H "Authorization: Bearer ak_live_..." \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0", "id": 2, "method": "message/send",
"params": { "message": { "parts": [{ "kind": "text", "text": "platforms" }] } }
}'Text grammar: create <engine> <tier> [name ...], health <id>,
term <id>, platforms, payment <id>. Anything else answers with the
skill list and the exact JSON shape.
Public, no auth: GET /catalog.json (proxy of the account API's
/a2a-catalog).
Deploy
docker build -t agentpodium-agent-gateway apps/agent-gateway
# push, then apply:
kubectl apply -f apps/agent-gateway/deploy/gateway.yamldeploy/gateway.yaml creates namespace ap-agentgw, a Deployment/Service on
port 3200, and two HTTPRoutes (mcp.agentspodium.com,
a2a.agentspodium.com) against the shared akash-gateway Gateway. Swap
__IMAGE_TAG__ for the built image tag before applying.
This server cannot be installed
Maintenance
Related MCP Connectors
Hosted AgentLux MCP server for marketplace, identity, creator, services, and social flows.
- UnifAPIOAuthcom.unifapi
Hosted MCP server for live public-data APIs and Skills for AI agents.
MCP server for Boson Protocol — on-chain agentic commerce for physical & digital goods.
Nifty's MCP server — exposes tasks, projects, messages, and files as tools for AI agents.
Related MCP Servers
- AlicenseNot gradedqualityCmaintenanceMCP server for AgentPay — the payment gateway for autonomous AI agents. Fund a wallet once, give your agent the key, and it discovers, provisions, and pays for tool APIs on its own. One key, every tool.1121MIT
- AlicenseNot gradedqualityCmaintenanceMCP server for cross-platform agent onboarding. Registers external agents, translates intents from LangChain, CrewAI, AutoGen, and A2A formats, and proxies cross-ecosystem transactions.MIT
- AlicenseCqualityDmaintenanceMCP server bringing 100+ x402-paid APIs to AI agents (Claude, Cursor, MCP-aware clients). Auto-discovers tools from CDP Bazaar; handles USDC micropayments on Base.100601MIT
- AlicenseBqualityDmaintenanceMCP server providing AI agents access to 38 pay-per-call APIs (LLM, image, code, audio, crypto, web, IPFS) via HTTP 402 micropayments in USDC/USDm.2253MIT