ScrapeBadger for VS Code
io.github.scrape-badger/scrapebadger
Twitter/X scraping API for AI agents. Get profiles, tweets, trends, and more.
client:VS Code
transport:stdio
runtime:pypi
Install ScrapeBadger in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "scrapebadger-api-key",
"description": "SCRAPEBADGER_API_KEY",
"password": true
}
],
"servers": {
"scrapebadger": {
"type": "stdio",
"command": "uvx",
"args": [
"scrapebadger-mcp"
],
"env": {
"SCRAPEBADGER_API_KEY": "${input:scrapebadger-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