Skip to content
VS Code

taskfleet mcp for VS Code

io.github.bfai-1/taskfleet-mcp

Pay-per-call MCP tools: web search, scraping, on-chain wallet intel, extraction. x402 USDC on Base.

client:VS Code transport:stdio runtime:npm

Install taskfleet mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "buyer-wallet-private-key",
      "description": "BUYER_WALLET_PRIVATE_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "taskfleet-url",
      "description": "TASKFLEET_URL",
      "password": true
    }
  ],
  "servers": {
    "taskfleet-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "taskfleet-mcp"
      ],
      "env": {
        "BUYER_WALLET_PRIVATE_KEY": "${input:buyer-wallet-private-key}",
        "TASKFLEET_URL": "${input:taskfleet-url}"
      }
    }
  }
}

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

taskfleet mcp in other clients