Model Context Protocol

Give your AI agent fundraising superpowers.

Capital Atlas runs a hosted MCP server. Point Claude Code, Codex, Cursor, or any MCP-compatible agent at the URL below and let it search funds, find contacts, and draft outreach — all from your terminal or IDE.

01Create accountFree Atlas founder account
02Add MCP serverOne command in your client
03Agent gets access8 tools, live VC data

Available tools

search_funds

Search fund managers by stage, sector, geography, and cheque size.

search_matched_fund_managers

Find fund managers matched to your startup profile automatically.

fund_manager_profile

Get detailed profile for a specific fund manager including portfolio and thesis.

Search and explore the fund landscape

Authentication required. All tools require a Capital Atlas startup account. The server uses session-based auth — your agent inherits your logged-in session when you authenticate via the client commands below. Create a free account →

Connect your agent

Select your client:

Claude Code

Run once in your terminal. You will be prompted to sign in via browser on first use.

bash
claude mcp add --transport http atlas https://capitalatlas.ai/api/mcp

Atlas tools appear in your next Claude Code session automatically.

Codex CLI

Two commands: register the server, then authenticate.

Step 1Register the server

bash
codex mcp add atlas --url https://capitalatlas.ai/api/mcp

Step 2Authenticate

bash
codex mcp login atlas

Claude Desktop

Add to claude_desktop_config.json, then restart Claude Desktop.

macOS path: ~/Library/Application Support/Claude/claude_desktop_config.json

claude_desktop_config.json
{
  "mcpServers": {
    "atlas": {
      "type": "http",
      "url": "https://capitalatlas.ai/api/mcp"
    }
  }
}

You will be prompted to authenticate in the browser on first tool use.

Cursor

Install in one click:

Add to Cursor

Opens Cursor to install the server. You will authenticate in the browser on first tool use.

Or configure manually — add to .cursor/mcp.json (project) or ~/.cursor/mcp.json (global):

.cursor/mcp.json
{
  "mcpServers": {
    "atlas": {
      "url": "https://capitalatlas.ai/api/mcp"
    }
  }
}

Any client that supports remote MCP over HTTP/SSE works. Windsurf, VS Code, Zed, and other editors that follow the MCP spec can connect using the same URL above.