Skip to main content
AgentCash supports any client that implements the Model Context Protocol.

Guided install

The installer auto-detects available clients:
npx agentcash install

Supported clients

Add to your Codex MCP configuration:
{
  "mcpServers": {
    "agentcash": {
      "command": "npx",
      "args": ["-y", "agentcash@latest"]
    }
  }
}
Add to your Windsurf MCP configuration (.windsurf/mcp.json):
{
  "mcpServers": {
    "agentcash": {
      "command": "npx",
      "args": ["-y", "agentcash@latest"]
    }
  }
}
Add to your Warp MCP configuration:
{
  "mcpServers": {
    "agentcash": {
      "command": "npx",
      "args": ["-y", "agentcash@latest"]
    }
  }
}
Add to your Gemini CLI MCP configuration:
{
  "mcpServers": {
    "agentcash": {
      "command": "npx",
      "args": ["-y", "agentcash@latest"]
    }
  }
}
Add to your Goose MCP configuration:
{
  "mcpServers": {
    "agentcash": {
      "command": "npx",
      "args": ["-y", "agentcash@latest"]
    }
  }
}
Add to your Zed settings:
{
  "context_servers": {
    "agentcash": {
      "command": {
        "path": "npx",
        "args": ["-y", "agentcash@latest"]
      }
    }
  }
}
Add to your Cline MCP settings (.cline/mcp_settings.json):
{
  "mcpServers": {
    "agentcash": {
      "command": "npx",
      "args": ["-y", "agentcash@latest"]
    }
  }
}

Generic setup

For any MCP-compatible client, the configuration follows the same pattern:
  • Command: npx
  • Arguments: ["-y", "agentcash@latest"]
  • Transport: stdio (default)
Refer to your client’s documentation for where to place MCP server configuration.