AntFeed for VS Code
io.github.augustas11/antfeed-mcp
Discover and transact on the AntSeed P2P AI network from any MCP-compatible agent.
client:VS Code
transport:stdio
runtime:npm
Install AntFeed in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "antfeed-explorer-url",
"description": "ANTFEED_EXPLORER_URL",
"password": true
},
{
"type": "promptString",
"id": "antseed-buyer-url",
"description": "ANTSEED_BUYER_URL",
"password": true
},
{
"type": "promptString",
"id": "antseed-max-deposit-usdc",
"description": "ANTSEED_MAX_DEPOSIT_USDC",
"password": true
},
{
"type": "promptString",
"id": "antseed-buyer-strict",
"description": "ANTSEED_BUYER_STRICT",
"password": true
}
],
"servers": {
"antfeed-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@antfeed/mcp"
],
"env": {
"ANTFEED_EXPLORER_URL": "${input:antfeed-explorer-url}",
"ANTSEED_BUYER_URL": "${input:antseed-buyer-url}",
"ANTSEED_MAX_DEPOSIT_USDC": "${input:antseed-max-deposit-usdc}",
"ANTSEED_BUYER_STRICT": "${input:antseed-buyer-strict}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs