cituna mcp for VS Code
com.cituna/cituna-mcp
Track how 6 AI engines cite your brand, daily, with live Google Search Console.
client:VS Code
transport:stdio
runtime:npm
Install cituna mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "cituna-api-key",
"description": "CITUNA_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "cituna-api-url",
"description": "CITUNA_API_URL",
"password": true
}
],
"servers": {
"cituna-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"cituna-mcp"
],
"env": {
"CITUNA_API_KEY": "${input:cituna-api-key}",
"CITUNA_API_URL": "${input:cituna-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