Skip to content
VS Code

social content mcp server for VS Code

io.github.thenextgennexus/social-content-mcp-server

Access Hacker News, Dev.to, IMDB, podcasts, and Eventbrite data through the Model Context Protocol

client:VS Code transport:stdio runtime:npm

Install social content mcp server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "apify-token",
      "description": "APIFY_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "social-content-mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@thenextgennexus/social-content-mcp-server"
      ],
      "env": {
        "APIFY_TOKEN": "${input:apify-token}"
      }
    }
  }
}

VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs

social content mcp server in other clients