Skip to main content
The Pods MCP Server is hosted and ready to use — no installation required. Point your AI host at the server URL and add your API key to start using all 25 tools and 9 prompts. Server URL: http://mcp.pods.finance/mcp

Prerequisites

  • A Pods API key — get one here
  • An MCP-compatible host: Claude Desktop or similar
  • Node.js installed (required for npx)

Claude Desktop

1

Open the configuration file

Open ~/Library/Application Support/Claude/claude_desktop_config.json
Create the file if it does not exist.
2

Add the server entry

{
  "mcpServers": {
    "pods": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "https://mcp.pods.finance/mcp",
        "--header",
        "x-api-key:your-api-key"
      ]
    }
  }
}
Claude Desktop uses mcp-remote as a bridge to connect to remote HTTP servers. The --allow-http flag is required because mcp-remote enforces HTTPS by default.
3

Restart Claude Desktop

Close and reopen the app. The Pods tools will appear in the tool picker.
Ask Claude “what Pods tools are available?” to confirm the connection.

Claude Code

1

Add the server

claude mcp add --transport http pods http://mcp.pods.finance/mcp --header "x-api-key:your-api-key"
Claude Code supports HTTP transport natively — no mcp-remote required.
2

Verify the connection

claude mcp list
Ask Claude “what Pods tools are available?” to confirm the connection.

Cursor

1

Add the server

Create or edit .cursor/mcp.json (project) or ~/.cursor/mcp.json (global):
{
  "mcpServers": {
    "pods": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "http://mcp.pods.finance/mcp",
        "--header",
        "x-api-key:your-api-key",
        "--allow-http"
      ]
    }
  }
}
The --allow-http flag is required because mcp-remote enforces HTTPS by default.
2

Verify the connection

Open Cursor and ask in the chat “what Pods tools are available?” to confirm the connection.
The Pods tools will appear in the tool picker.

Google Gemini CLI

1

Add the server

gemini mcp add --transport http \
  --header "x-api-key:your-api-key" \
  pods http://mcp.pods.finance/mcp
2

Verify the connection

gemini mcp list
Or, inside a Gemini chat session, run /mcp enable pods.
Ask Gemini “what Pods tools are available?” to confirm the connection.

OpenAI Codex

1

Add the server

codex mcp add pods -- npx -y mcp-remote http://mcp.pods.finance/mcp --header x-api-key:your-api-key --allow-http
2

Verify the connection

codex mcp list
Ask Codex “what Pods tools are available?” to confirm the connection.

Other Agents

Any MCP-compatible host that accepts a mcpServers JSON config can connect to the Pods server using mcp-remote:
{
  "mcpServers": {
    "pods": {
      "command": "npx",
      "args": [
        "-y",
        "mcp-remote",
        "http://mcp.pods.finance/mcp",
        "--header",
        "x-api-key:your-api-key",
        "--allow-http"
      ]
    }
  }
}
Replace your-api-key with your Pods API key. The --allow-http flag is required because mcp-remote enforces HTTPS by default.

Next Steps

Tools Reference

Browse all 25 tools and 9 prompts with inputs and outputs

MCP Server Overview

Learn what the server does and when to use it