Skip to content
VS Code

agency mcp server for VS Code

io.github.npupko/agency-mcp-server

On-demand access to 150+ specialist AI agent templates — search, browse, and spawn agents

client:VS Code transport:stdio runtime:npm

Install agency mcp server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "agency-agents-path",
      "description": "AGENCY_AGENTS_PATH",
      "password": true
    },
    {
      "type": "promptString",
      "id": "agency-repo-url",
      "description": "AGENCY_REPO_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "agency-auto-update",
      "description": "AGENCY_AUTO_UPDATE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "agency-update-interval",
      "description": "AGENCY_UPDATE_INTERVAL",
      "password": true
    }
  ],
  "servers": {
    "agency-mcp-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "agency-mcp-server"
      ],
      "env": {
        "AGENCY_AGENTS_PATH": "${input:agency-agents-path}",
        "AGENCY_REPO_URL": "${input:agency-repo-url}",
        "AGENCY_AUTO_UPDATE": "${input:agency-auto-update}",
        "AGENCY_UPDATE_INTERVAL": "${input:agency-update-interval}"
      }
    }
  }
}

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

agency mcp server in other clients