Stdio install for any local agent runtime. Remote Streamable HTTP at https://mcp.go2.gg/mcp with OAuth 2.1 for hosted clients.
Run in your terminal
claude mcp add go2 -- npx -y @go2/mcp-server@latest --api-key "$GO2_API_KEY"
Add to claude_desktop_config.json
{
"mcpServers": {
"go2": {
"command": "npx",
"args": ["-y", "@go2/mcp-server@latest", "--api-key", "go2_xxx"],
"env": {
"GO2_AGENT_ID": "claude-desktop",
"GO2_AGENT_RUN_ID": "set-per-conversation"
}
}
}
}Paste into "Add custom MCP server" on Claude.ai
https://mcp.go2.gg/mcp
Add to ~/.cursor/mcp.json
{
"mcpServers": {
"go2": {
"command": "npx",
"args": ["-y", "@go2/mcp-server@latest", "--api-key", "go2_xxx"],
"env": {
"GO2_AGENT_ID": "claude-desktop",
"GO2_AGENT_RUN_ID": "set-per-conversation"
}
}
}
}Add to mcp_config.json
{
"mcpServers": {
"go2": {
"command": "npx",
"args": ["-y", "@go2/mcp-server@latest", "--api-key", "go2_xxx"],
"env": {
"GO2_AGENT_ID": "claude-desktop",
"GO2_AGENT_RUN_ID": "set-per-conversation"
}
}
}
}Add to ~/.codex/config.toml
# ~/.codex/config.toml [mcp.servers.go2] command = "npx" args = ["-y", "@go2/mcp-server@latest"] env.GO2_API_KEY = "go2_xxx" env.GO2_AGENT_ID = "codex"
Plugin manifest URL
https://go2.gg/.well-known/ai-plugin.json
Remote MCP endpoint
https://mcp.go2.gg/mcp
MCP server config
{
"mcpServers": {
"go2": {
"command": "npx",
"args": ["-y", "@go2/mcp-server@latest", "--api-key", "go2_xxx"],
"env": {
"GO2_AGENT_ID": "claude-desktop",
"GO2_AGENT_RUN_ID": "set-per-conversation"
}
}
}
}Remote MCP config
{
"mcpServers": {
"go2": {
"url": "https://mcp.go2.gg/mcp",
"transport": "streamable-http"
}
}
}create_link— Create a short link.list_links— List links for the authenticated org.get_link— Fetch a single link by id.update_link— Update an existing link.delete_link— Archive a link.bulk_create_links— Create many links in one call.get_analytics— Per-link analytics roll-up.track_agent_link— Create a link and stamp it with agent_id, agent_run_id, agent_actor_id.get_run_attribution— Click stream for a given agent_run_id / agent_id / link.list_agent_runs— Distinct agent runs with click counts and first/last timestamps.create_revocable_link— Create a single-use link that 410s after one click.create_expiring_link— Create a link with TTL in minutes.revoke_run_links— Archive every link associated with a given agent_run_id.search_docs— Search Go2 documentation.get_doc— Fetch a documentation page by slug.list_docs— Enumerate documentation pages.Get an API key at /dashboard/developer. For remote MCP, OAuth 2.1 with PKCE is enforced. RFC 7591 dynamic client registration is enabled at https://api.go2.gg/api/v1/auth/oauth2/register.