RankJot for VS Code
io.github.epolat/rankjot-mcp
Real Google rankings as a tool: where a domain ranks for a keyword, plus the top 10 organic results.
client:VS Code
transport:stdio
runtime:pypi
Install RankJot in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "rankjot-api-key",
"description": "RANKJOT_API_KEY",
"password": true
}
],
"servers": {
"rankjot-mcp": {
"type": "stdio",
"command": "uvx",
"args": [
"rankjot-mcp"
],
"env": {
"RANKJOT_API_KEY": "${input:rankjot-api-key}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs