MCP integration guide

Point any agent at one endpoint.

Automated Operations exposes a single Model Context Protocol server. Every MCP-compatible client — and a few that aren't yet — connects to it the same way. Pick your client below.

Endpoint

https://mcp.automatedoperations.com

Same URL for every client. Streamable HTTP transport. SSE supported for clients that require it.

Auth

Sign in with your AO account

The first time you connect a client, a browser opens to sign in to AO. After that, your client signs in for you. Nothing to copy into config files, nothing to share — teammates each use their own AO account.

Quick connectivity test

bash
curl -i https://mcp.automatedoperations.com/.well-known/oauth-protected-resource

A 200 means the endpoint is reachable from your network. Run it anywhere to check connectivity — no sign-in needed.

Claude Code

Anthropic's terminal-native coding agent.

#
bash
claude mcp add --transport http \
  automated-operations https://mcp.automatedoperations.com

First run opens a browser to sign in to AO. After that, your client signs in for you.

Claude Desktop

Anthropic desktop app for Mac and Windows.

#
json · ~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "automated-operations": {
      "url": "https://mcp.automatedoperations.com"
    }
  }
}

Cursor

AI-first IDE.

#
json · ~/.cursor/mcp.json
{
  "mcpServers": {
    "automated-operations": {
      "url": "https://mcp.automatedoperations.com"
    }
  }
}

Windsurf

Codeium's agentic IDE.

#
json · ~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "automated-operations": {
      "url": "https://mcp.automatedoperations.com"
    }
  }
}

Codex CLI

OpenAI's coding CLI.

#
toml · ~/.codex/config.toml
[mcp_servers.automated-operations]
url = "https://mcp.automatedoperations.com"
transport = "http"

Grok Build

xAI's full-screen TUI and agentic engineering environment.

#
bash
grok mcp add automated-operations \
  --url https://mcp.automatedoperations.com

Zed

High-performance collaborative editor.

#
json · ~/.config/zed/settings.json
{
  "context_servers": {
    "automated-operations": {
      "source": "custom",
      "url": "https://mcp.automatedoperations.com"
    }
  }
}

VS Code

GitHub Copilot Chat / agent mode.

#
json · .vscode/mcp.json
{
  "servers": {
    "automated-operations": {
      "type": "http",
      "url": "https://mcp.automatedoperations.com"
    }
  }
}

Don’t see your client?

If your tool speaks MCP over streamable HTTP or SSE, the configuration above will work — just rename the keys to match your client’s schema. If it doesn’t, we maintain shims for OpenAI tool-calling and Google Vertex tool-use that wrap the same backend. Open the chat in the corner and tell us which client and we’ll wire it up the same day.

Get started