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
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.
Settings → Connectors → Add custom connector
Settings → Apps & Connectors → enable Developer Mode → Add connector
Requires ChatGPT Plus, Pro, Business, Enterprise, or Edu
+ → Connectors → Add connector → Custom
Settings → MCP Servers → Add new (Streamable HTTP)
Settings → MCP → Add Server (Streamable HTTP)
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.
For Claude Code, Gemini CLI, Codex and OpenCode, register agentis once from your terminal. Sign in over OAuth when prompted.
claude mcp add --transport http agentis https://mcp.agentis.capital/mcp
gemini mcp add --transport http agentis https://mcp.agentis.capital/mcp
[mcp_servers.agentis] url = "https://mcp.agentis.capital/mcp"
Then run codex mcp login agentis.
{
"mcp": {
"agentis": {
"type": "remote",
"url": "https://mcp.agentis.capital/mcp"
}
}
}
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.
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.
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.
Create an agent in the dashboard and you'll get pre-filled setup steps for every client above.