Google Search Console for VS Code
io.github.acamolese/google-search-console-mcp
Google Search Console: SEO audits, performance queries, URL inspection, indexing checks.
client:VS Code
transport:stdio
runtime:pypi
Install Google Search Console in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "gsc-client-id",
"description": "GSC_CLIENT_ID",
"password": true
},
{
"type": "promptString",
"id": "gsc-client-secret",
"description": "GSC_CLIENT_SECRET",
"password": true
},
{
"type": "promptString",
"id": "gsc-refresh-token",
"description": "GSC_REFRESH_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "gsc-service-account-file",
"description": "GSC_SERVICE_ACCOUNT_FILE",
"password": true
},
{
"type": "promptString",
"id": "gsc-report-language",
"description": "GSC_REPORT_LANGUAGE",
"password": true
},
{
"type": "promptString",
"id": "gsc-data-state",
"description": "GSC_DATA_STATE",
"password": true
}
],
"servers": {
"google-search-console-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"mcp-google-search-console"
],
"env": {
"GSC_CLIENT_ID": "${input:gsc-client-id}",
"GSC_CLIENT_SECRET": "${input:gsc-client-secret}",
"GSC_REFRESH_TOKEN": "${input:gsc-refresh-token}",
"GSC_SERVICE_ACCOUNT_FILE": "${input:gsc-service-account-file}",
"GSC_REPORT_LANGUAGE": "${input:gsc-report-language}",
"GSC_DATA_STATE": "${input:gsc-data-state}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs