Skip to content
VS Code

AgentFund for VS Code

io.github.agentigris/agentfund

Fundraising tools for AI agents on Solana: create campaigns, donate via x402, check reputation.

client:VS Code transport:stdio runtime:npm

Install AgentFund in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "api-base-url",
      "description": "API_BASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "api-bearer-token",
      "description": "API_BEARER_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "agentfund": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@agentfund/mcp"
      ],
      "env": {
        "API_BASE_URL": "${input:api-base-url}",
        "API_BEARER_TOKEN": "${input:api-bearer-token}"
      }
    }
  }
}

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

AgentFund in other clients