agentfuse mcp for VS Code
io.github.sai4447/agentfuse-mcp
Affiliate API for AI agents -- browse programs, generate tracked links, record conversions.
client:VS Code
transport:stdio
runtime:npm
Install agentfuse mcp in VS Code
.vscode/mcp.json
{
"inputs": [
{
"type": "promptString",
"id": "agentfuse-api-key",
"description": "AGENTFUSE_API_KEY",
"password": true
},
{
"type": "promptString",
"id": "agentfuse-api-url",
"description": "AGENTFUSE_API_URL",
"password": true
}
],
"servers": {
"agentfuse-mcp": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"agentfuse-mcp"
],
"env": {
"AGENTFUSE_API_KEY": "${input:agentfuse-api-key}",
"AGENTFUSE_API_URL": "${input:agentfuse-api-url}"
}
}
}
}
VS Code prompts for each input the first time the server starts, so no secret is written to the file. VS Code docs