Skip to content

πŸ”Ή mcp

πŸ€– Start the Capgo MCP (Model Context Protocol) server for AI agent integration.

Terminal window
npx @capgo/cli@latest mcp

This command starts a local stdio MCP server that exposes Capgo account tools for AI agents. The server is designed for non-interactive, programmatic use after npx @capgo/cli@latest login.

A remote Streamable HTTP MCP server is also published at https://capgo.app/mcp for docs discovery, when-to-use guidance, and OpenAPI location. The remote server does not mutate a Capgo account. The machine-readable manifest is at https://capgo.app/.well-known/mcp.json.

Available local tools include:

  • capgo_list_apps, capgo_add_app, capgo_update_app, capgo_delete_app
  • capgo_upload_bundle, capgo_list_bundles, capgo_delete_bundle, capgo_cleanup_bundles
  • capgo_list_channels, capgo_add_channel, capgo_update_channel, capgo_delete_channel
  • capgo_get_current_bundle, capgo_check_compatibility
  • capgo_list_organizations, capgo_add_organization
  • capgo_star_repository, capgo_star_all_repositories
  • capgo_get_account_id, capgo_doctor, capgo_get_stats
  • capgo_request_build, capgo_generate_encryption_keys

Add the following configuration to claude_desktop_config.json:

{
"mcpServers": {
"capgo": {
"command": "npx",
"args": ["@capgo/cli", "mcp"]
}
}
}

Example:

Terminal window
npx @capgo/cli mcp