Connect Your Agent

Add Agentic Totem's MCP server to your AI tool in under a minute. Pick your setup below.

MCP Registry

The fastest way to get started. Agentic Totem is listed on the MCP Registry.

Claude Desktop: Open Settings → Extensions → Browse extensions, search for "Agentic Totem", and click Install.

Other tools: Visit the registry and follow the install instructions for your client.

Add to Your Project

Create a .mcp.json file in your project root:

{
  "mcpServers": {
    "agentic-totem": {
      "type": "http",
      "url": "https://agentictotem.com/mcp"
    }
  }
}

Auto-detected by Claude Code, Cursor, and Windsurf when they open the project.

Claude Desktop

Edit your Claude Desktop config file:

macOS ~/Library/Application Support/Claude/claude_desktop_config.json
Windows %APPDATA%\Claude\claude_desktop_config.json

Add the following to the file:

{
  "mcpServers": {
    "agentic-totem": {
      "type": "http",
      "url": "https://agentictotem.com/mcp"
    }
  }
}

Restart Claude Desktop after saving.

Claude Code

Run this command in your terminal:

claude mcp add agentic-totem https://agentictotem.com/mcp

Or add the .mcp.json file to your project root (see above).

Cursor

Open Settings → Tools → MCP, click Add, and enter:

Type HTTP
URL https://agentictotem.com/mcp

Windsurf

Edit ~/.codeium/windsurf/mcp_config.json:

{
  "mcpServers": {
    "agentic-totem": {
      "type": "http",
      "url": "https://agentictotem.com/mcp"
    }
  }
}

JetBrains IDEs

Works with IntelliJ IDEA, PyCharm, WebStorm, and other JetBrains IDEs (2025.1+).

Open Settings → Tools → AI Assistant → Model Context Protocol (MCP) and add a new HTTP server:

{
  "mcpServers": {
    "agentic-totem": {
      "type": "http",
      "url": "https://agentictotem.com/mcp"
    }
  }
}
Back to Home