Skip to content
VS Code

agentreacher for VS Code

io.github.thijssmudde/agentreacher

Connect your AI to social media. Create, schedule, and publish posts to 9+ platforms.

client:VS Code transport:stdio runtime:npm

Install agentreacher in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "agentreacher-api-key",
      "description": "AGENTREACHER_API_KEY",
      "password": true
    }
  ],
  "servers": {
    "agentreacher": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "agentreacher"
      ],
      "env": {
        "AGENTREACHER_API_KEY": "${input:agentreacher-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

agentreacher in other clients