google search console for VS Code
io.github.sarahpark/google-search-console
Google Search Console MCP server — search analytics, URL inspection, and sitemaps
client:VS Code
transport:stdio
runtime:npm
Install google search console in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "google-application-credentials",
"description": "GOOGLE_APPLICATION_CREDENTIALS",
"password": true
}
],
"servers": {
"google-search-console": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@sarahpark/google-search-console-mcp"
],
"env": {
"GOOGLE_APPLICATION_CREDENTIALS": "${input:google-application-credentials}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs