Skip to content
VS Code

viralhunt mcp for VS Code

io.github.rodvan/viralhunt-mcp

Find trending content and schedule posts across social networks via the ViralHunt.io API.

client:VS Code transport:stdio runtime:npm

Install viralhunt mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "viralhunt-api-key",
      "description": "VIRALHUNT_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "viralhunt-base-url",
      "description": "VIRALHUNT_BASE_URL",
      "password": true
    }
  ],
  "servers": {
    "viralhunt-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "viralhunt-mcp"
      ],
      "env": {
        "VIRALHUNT_API_KEY": "${input:viralhunt-api-key}",
        "VIRALHUNT_BASE_URL": "${input:viralhunt-base-url}"
      }
    }
  }
}

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

viralhunt mcp in other clients