Skip to content
VS Code

FastSocial for VS Code

io.github.socialappsceduler-eng/fastsocial

Schedule and manage social media posts across 7 platforms directly from Claude.

client:VS Code transport:stdio runtime:oci

Install FastSocial in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "fastsocial-api-key",
      "description": "FASTSOCIAL_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "fastsocial": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/socialappsceduler-eng/fastsocial-mcp:latest"
      ],
      "env": {
        "FASTSOCIAL_API_KEY": "${input:fastsocial-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

FastSocial in other clients