mcp for VS Code
ai.rolli/mcp
Social media search, expert discovery, and analytics across X, Reddit, YouTube, and more
client:VS Code
transport:stdio
runtime:npm
Install mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "rolli-api-token",
"description": "ROLLI_API_TOKEN",
"password": true
},
{
"type": "promptString",
"id": "rolli-user-id",
"description": "ROLLI_USER_ID",
"password": true
}
],
"servers": {
"mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@rolli/mcp"
],
"env": {
"ROLLI_API_TOKEN": "${input:rolli-api-token}",
"ROLLI_USER_ID": "${input:rolli-user-id}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs