seo audit tool for VS Code
io.github.vpatser1/seo-audit-tool
SEO page audits with 0-100 scoring, keyword analysis, link checking, sitemap validation
client:VS Code
transport:stdio
runtime:npm
Install seo audit tool in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "license-key",
"description": "LICENSE_KEY",
"password": true
}
],
"servers": {
"seo-audit-tool": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"seo-audit-tool"
],
"env": {
"LICENSE_KEY": "${input:license-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs