Skip to content
VS Code

social media analytics for VS Code

io.github.vpatser1/social-media-analytics

Profile analysis, hashtag research, content calendars, competitor benchmarks, viral scoring

client:VS Code transport:stdio runtime:npm

Install social media analytics in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "license-key",
      "description": "LICENSE_KEY",
      "password": true
    }
  ],
  "servers": {
    "social-media-analytics": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "social-media-analytics"
      ],
      "env": {
        "LICENSE_KEY": "${input:license-key}"
      }
    }
  }
}

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

social media analytics in other clients