sorsa mcp for VS Code
io.github.sorsa-io/sorsa-mcp
MCP server for the Sorsa.io X/Twitter data API
client:VS Code
transport:stdio
runtime:npm
Install sorsa mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "sorsa-api-key",
"description": "SORSA_API_KEY",
"password": true
}
],
"servers": {
"sorsa-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"sorsa-mcp"
],
"env": {
"SORSA_API_KEY": "${input:sorsa-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