agentis
MCP server

Connect your AI agent

Plug the URL below into any MCP-capable client — Claude, Cursor, n8n, or your own code — and your agent gains agentis natively, alongside everything else it can already do.

https://mcp.agentis.capital/mcp

Streamable HTTP · OAuth or Bearer API key · Hosted in the EU

01 Apps & IDEs · OAuth

In Claude, ChatGPT, Cursor and similar apps, add agentis as a custom connector. You'll sign in once via OAuth; the agent then has access for the lifetime of its session.

Claude web · desktop

Settings → Connectors → Add custom connector

ChatGPT developer mode

Settings → Apps & Connectors → enable Developer Mode → Add connector

Requires ChatGPT Plus, Pro, Business, Enterprise, or Edu

Grok grok.com

+ → Connectors → Add connector → Custom

Cursor IDE

Settings → MCP Servers → Add new (Streamable HTTP)

Windsurf IDE

Settings → MCP → Add Server (Streamable HTTP)

Antigravity IDE

Agent panel → … → MCP → Manage MCP Servers

Paste the URL above when prompted, then sign in to agentis. The connector stays attached until you remove it.

02 Command-line clients

For Claude Code, Gemini CLI, Codex and OpenCode, register agentis once from your terminal. Sign in over OAuth when prompted.

Claude CodeCLI
claude mcp add --transport http agentis https://mcp.agentis.capital/mcp
Gemini CLICLI
gemini mcp add --transport http agentis https://mcp.agentis.capital/mcp
Codex~/.codex/config.toml
[mcp_servers.agentis]
url = "https://mcp.agentis.capital/mcp"

Then run codex mcp login agentis.

OpenCodeopencode.json
{
  "mcp": {
    "agentis": {
      "type": "remote",
      "url": "https://mcp.agentis.capital/mcp"
    }
  }
}
03 Automation & code · API key

For n8n, LangChain, AutoGen, CrewAI or your own code, authenticate with an agent API key issued from the dashboard. Each agent gets its own key, bound to its own policy.

HTTP request shapestreamable http
curl -X POST https://mcp.agentis.capital/mcp \
  -H "Authorization: Bearer $AGENTIS_API_KEY" \
  -H "Content-Type: application/json" \
  -H "Accept: application/json, text/event-stream" \
  -d '{"jsonrpc":"2.0","method":"tools/list","id":1}'

Tailored snippets for n8n, LangChain, LangGraph, AutoGen and CrewAI — pre-filled with your agent's key — appear in the dashboard when you create an agent.

Auth at a glance

Apps & IDEs — Claude, ChatGPT, Cursor, Windsurf and similar — sign in over OAuth. The dashboard pops up briefly; you approve once.

Everything else — CLIs in headless mode, automation platforms, your own code — uses a per-agent API key as a Bearer token. Keys are issued and revoked from the dashboard.

Either way, every MCP session is bound to a single agent, and every tool call runs against that agent's policy.

Ready to connect?

Create an agent in the dashboard and you'll get pre-filled setup steps for every client above.