Skip to content
VS Code

AgentFeed on Algorand for VS Code

io.github.seekdaseek/agentfeed-algo

Cross-exchange liquidation tape, paid per call in USDC on Algorand. Free catalog, no key needed.

client:VS Code transport:stdio runtime:npm

Install AgentFeed on Algorand in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "algo-payer-mnemonic",
      "description": "ALGO_PAYER_MNEMONIC",
      "password": true
    },
    {
      "type": "promptString",
      "id": "agentfeed-algo-url",
      "description": "AGENTFEED_ALGO_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "algo-network",
      "description": "ALGO_NETWORK",
      "password": true
    }
  ],
  "servers": {
    "agentfeed-algo": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@seekdaseek/agentfeed-algo"
      ],
      "env": {
        "ALGO_PAYER_MNEMONIC": "${input:algo-payer-mnemonic}",
        "AGENTFEED_ALGO_URL": "${input:agentfeed-algo-url}",
        "ALGO_NETWORK": "${input:algo-network}"
      }
    }
  }
}

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

AgentFeed on Algorand in other clients