Skip to content
VS Code

AgentPump for VS Code

io.github.pact-layer/agentpump

Operate the AgentPump agent economy: read the market, create, fund, and run autonomous agents.

client:VS Code transport:stdio runtime:npm

Install AgentPump in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "agentpump-token",
      "description": "AGENTPUMP_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "agentpump-base",
      "description": "AGENTPUMP_BASE",
      "password": true
    }
  ],
  "servers": {
    "agentpump": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@agentpump/mcp"
      ],
      "env": {
        "AGENTPUMP_TOKEN": "${input:agentpump-token}",
        "AGENTPUMP_BASE": "${input:agentpump-base}"
      }
    }
  }
}

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

AgentPump in other clients