seo audit console for VS Code
io.github.houtini-ai/seo-audit-console
Technical SEO in Claude: GSC + crawl + DataForSEO - audit, market sizing, content recon.
client:VS Code
transport:stdio
runtime:npm
Install seo audit console in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "google-application-credentials",
"description": "GOOGLE_APPLICATION_CREDENTIALS",
"password": true
},
{
"type": "promptString",
"id": "sac-data-dir",
"description": "SAC_DATA_DIR",
"password": true
},
{
"type": "promptString",
"id": "dataforseo-username",
"description": "DATAFORSEO_USERNAME",
"password": true
},
{
"type": "promptString",
"id": "dataforseo-password",
"description": "DATAFORSEO_PASSWORD",
"password": true
},
{
"type": "promptString",
"id": "dataforseo-cache-days",
"description": "DATAFORSEO_CACHE_DAYS",
"password": true
},
{
"type": "promptString",
"id": "firecrawl-api-key",
"description": "FIRECRAWL_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "supadata-api-key",
"description": "SUPADATA_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "majestic-api-key",
"description": "MAJESTIC_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "majestic-cache-days",
"description": "MAJESTIC_CACHE_DAYS",
"password": true
}
],
"servers": {
"seo-audit-console": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@houtini/seo-audit-console"
],
"env": {
"GOOGLE_APPLICATION_CREDENTIALS": "${input:google-application-credentials}",
"SAC_DATA_DIR": "${input:sac-data-dir}",
"DATAFORSEO_USERNAME": "${input:dataforseo-username}",
"DATAFORSEO_PASSWORD": "${input:dataforseo-password}",
"DATAFORSEO_CACHE_DAYS": "${input:dataforseo-cache-days}",
"FIRECRAWL_API_KEY": "${input:firecrawl-api-key}",
"SUPADATA_API_KEY": "${input:supadata-api-key}",
"MAJESTIC_API_KEY": "${input:majestic-api-key}",
"MAJESTIC_CACHE_DAYS": "${input:majestic-cache-days}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs