RankFabrik for VS Code
io.github.finalburner/rankfabrik-mcp
Proxy MCP des 4 API RankFabrik : Places, Jobs, Captions, Verify. Une cle federee pour les 4.
client:VS Code
transport:stdio
runtime:npm
Install RankFabrik in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "rankfabrik-api-key",
"description": "RANKFABRIK_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "rankfabrik-url-cle",
"description": "RANKFABRIK_URL_CLE",
"password": true
},
{
"type": "promptString",
"id": "rankfabrik-en-tete-cle",
"description": "RANKFABRIK_EN_TETE_CLE",
"password": true
},
{
"type": "promptString",
"id": "mcp-transport",
"description": "MCP_TRANSPORT",
"password": true
},
{
"type": "promptString",
"id": "port",
"description": "PORT",
"password": true
}
],
"servers": {
"rankfabrik-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"rankfabrik-mcp"
],
"env": {
"RANKFABRIK_API_KEY": "${input:rankfabrik-api-key}",
"RANKFABRIK_URL_CLE": "${input:rankfabrik-url-cle}",
"RANKFABRIK_EN_TETE_CLE": "${input:rankfabrik-en-tete-cle}",
"MCP_TRANSPORT": "${input:mcp-transport}",
"PORT": "${input:port}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs