MCP
The Model Context Protocol (MCP) is an open standard from Anthropic that lets LLM clients call external tools. With an MCP server in front of the axiom.ai API, Claude Desktop, Claude Code, Cursor, or any other MCP-aware client can trigger your automations and drive cloud browsers in conversation.
Two ways to set this up
1. The built-in desktop app server (recommended)
The axiom.ai desktop app ships with a Claude MCP server. Toggle it on, paste your API key, and any MCP client on your machine (Claude Desktop, Claude Code, Cursor, and others) can immediately trigger automations and call step functions. No code, no setup, no server to maintain.
This is the right path for almost everyone. You'll need a paid axiom.ai account to generate the API key.
2. Build your own server
If the built-in server doesn't fit (you want a headless server, a custom tool surface, a different SDK, or you're not running the desktop app), wrap the axiom.ai API yourself. The minimal version is around 30 lines. The pages below walk through /trigger and /run-data wrappers in Python and TypeScript, then how to register the result with the major MCP clients.
Anthropic's MCP resources
Useful reading regardless of which path you take. The protocol overview, capability model, and SDK quickstarts will save debugging time later.
- Spec and docs
- Build a server guide
- Quickstart
- Python SDK
- TypeScript SDK
- Reference servers (good templates to clone)
In this section
Desktop app MCP server
The axiom.ai desktop app ships with a built-in MCP server. Toggle it on, paste your API key, and Claude Desktop, Claude Code, Cursor, or any MCP client can trigger axiom.ai automations and step functions in conversation.
Build your own server (Python)
Build a minimal Model Context Protocol server in Python that exposes axiom.ai automation triggers as tools for any MCP client.
Build your own server (TypeScript)
Build a minimal Model Context Protocol server in Node and TypeScript that exposes axiom.ai automation triggers as tools for any MCP client.
Register with Claude clients
Configure Claude Desktop, Claude Code, Cursor, and Cowork to load your custom axiom.ai MCP server.
Need help? Contact support or ask a question in our Reddit community.