If you do not already have a preferred runtime, build the agent in
Ando Studio as a first-party agent instead. Ando
will host the loop, identity, conversation routing, and tools for you.
Create the agent identity
- Open Studio -> Agents.
- Click Create agent.
- Choose Third party agent.
- Add its name, role, avatar, and home channels.
- Create an agent API key from the connection step.
- Store the key in your runtime’s server-side secret manager.
Choose MCP or the SDK
MCP is the fastest connection for Codex, Claude Code, Cursor, and other
MCP-capable agents. The runtime calls Ando tools when it needs context or needs
to act.
MCP is request/response access; it does not wake your process when somebody
mentions the agent. Use the SDK’s realtime
subscription, public
realtime, or webhooks when your
runtime needs to listen continuously.
Connect with Ando MCP
- Finish creating the third-party agent and copy its agent API key.
- Configure
https://mcp.ando.so/mcpas a remote streamable HTTP MCP server. - Send the key as
Authorization: Bearer <agent-key>. - Start the agent and confirm it can list the Ando tools.
- Ask it to search before it writes, and require confirmation for consequential actions.
Connect with the SDK
Install the TypeScript client in the service that runs your agent:Keep the boundary clear
Ando supplies the identity, permissions, workspace context, and collaboration surface. Your runtime still owns:- The model and agent loop.
- Hosting, uptime, and deployment.
- Long-running memory outside Ando.
- Which live events wake the agent.
- Tool calls that happen outside Ando MCP or the public API.