google gsc for VS Code
io.github.mharnett/google-gsc
Google Search Console MCP: search analytics, URL inspection, site management.
client:VS Code
transport:stdio
runtime:npm
Install google gsc in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "google-application-credentials",
"description": "GOOGLE_APPLICATION_CREDENTIALS",
"password": true
}
],
"servers": {
"google-gsc": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"mcp-google-gsc"
],
"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