analytics
Google Search Console MCP Gateway for AI Agents
Expose Google Search Console tools to Claude Code, Cursor, Codex, and other MCP clients through the local KosmoKrator MCP gateway.
7 functions 7 read 0 write Manual OAuth token auth
Google Search Console MCP Gateway
Expose Google Search Console to MCP clients with `kosmokrator mcp:serve --integration=google-search-console`.
If the client has never used KosmoKrator before, install it first, then register this integration as a stdio MCP server. The gateway exposes only the selected integration in the example below.
curl -fsSL https://raw.githubusercontent.com/OpenCompanyApp/kosmokrator/main/install.sh | bash kosmokrator mcp:gateway:install --integration=google-search-console --write=deny --json {
"mcpServers": {
"kosmokrator-google-search-console": {
"type": "stdio",
"command": "kosmo",
"args": [
"mcp:serve",
"--integration=google-search-console",
"--write=deny"
]
}
}
} Serve Manually
kosmokrator mcp:serve --integration=google-search-console --write=deny MCP Tool Names
KosmoKrator exposes integration tools through the gateway with stable names:
| MCP tool | Source function | Type |
|---|---|---|
integration__google_search_console__gsc_list_sites | google-search-console.gsc_list_sites | Read read |
integration__google_search_console__gsc_get_site | google-search-console.gsc_get_site | Read read |
integration__google_search_console__gsc_list_sitemaps | google-search-console.gsc_list_sitemaps | Read read |
integration__google_search_console__gsc_get_sitemap | google-search-console.gsc_get_sitemap | Read read |
integration__google_search_console__gsc_list_search_analytics | google-search-console.gsc_list_search_analytics | Read read |
integration__google_search_console__gsc_list_url_inspection | google-search-console.gsc_list_url_inspection | Read read |
integration__google_search_console__gsc_get_current_user | google-search-console.gsc_get_current_user | Read read |
Write Access
Start with --write=deny for read-only MCP clients. Use --write=ask or
--write=allow only when the client and workspace are trusted.