seo web analysis mcp server for VS Code
io.github.thenextgennexus/seo-web-analysis-mcp-server
Run Lighthouse audits, check SSL certificates, detect tech stacks, query WHOIS and DNS records
client:VS Code
transport:stdio
runtime:npm
Install seo web analysis mcp server in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "apify-token",
"description": "APIFY_TOKEN",
"password": true
}
],
"servers": {
"seo-web-analysis-mcp-server": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@thenextgennexus/seo-web-analysis-mcp-server"
],
"env": {
"APIFY_TOKEN": "${input:apify-token}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs