socialapi for VS Code
ai.social-api/socialapi
MCP server for SocialAPI — manage social media comments, DMs, reviews, and mentions across platforms
client:VS Code
transport:stdio
runtime:npm
Install socialapi in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "socialapi-api-key",
"description": "SOCIALAPI_API_KEY",
"password": true
}
],
"servers": {
"socialapi": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"mcp-socialapi"
],
"env": {
"SOCIALAPI_API_KEY": "${input:socialapi-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