linkguard mcp for VS Code
ai.linkguard/linkguard-mcp
Backlink tools for AI assistants: redirect, Google index, and backlink health checks.
client:VS Code
transport:stdio
runtime:pypi
Install linkguard mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "linkguard-api-key",
"description": "LINKGUARD_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "linkguard-api-url",
"description": "LINKGUARD_API_URL",
"password": true
}
],
"servers": {
"linkguard-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"linkguard-mcp"
],
"env": {
"LINKGUARD_API_KEY": "${input:linkguard-api-key}",
"LINKGUARD_API_URL": "${input:linkguard-api-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs