seo authority mcp for VS Code
io.github.forgemeshlabs/seo-authority-mcp
SEO authority, keyword, competitor, content, site-audit, and internal-link tools with optional.
client:VS Code
transport:stdio
runtime:npm
Install seo authority mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "seo-api-base",
"description": "SEO_API_BASE",
"password": true
},
{
"type": "promptString",
"id": "seo-x402-private-key",
"description": "SEO_X402_PRIVATE_KEY",
"password": true
},
{
"type": "promptString",
"id": "seo-max-payment-usdc",
"description": "SEO_MAX_PAYMENT_USDC",
"password": true
}
],
"servers": {
"seo-authority-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@forgemeshlabs/seo-authority-mcp"
],
"env": {
"SEO_API_BASE": "${input:seo-api-base}",
"SEO_X402_PRIVATE_KEY": "${input:seo-x402-private-key}",
"SEO_MAX_PAYMENT_USDC": "${input:seo-max-payment-usdc}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs