Skip to content
VS Code

agentresources mcp for VS Code

io.github.sznt2010/agentresources-mcp

MCP server for Agent Resources: Trust Cards, signed telemetry, ERC-8004 identity, x402.

client:VS Code transport:stdio runtime:npm

Install agentresources mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "ar-api-base",
      "description": "AR_API_BASE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "ar-agent-private-key",
      "description": "AR_AGENT_PRIVATE_KEY",
      "password": true
    }
  ],
  "servers": {
    "agentresources-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@agentresources/mcp"
      ],
      "env": {
        "AR_API_BASE": "${input:ar-api-base}",
        "AR_AGENT_PRIVATE_KEY": "${input:ar-agent-private-key}"
      }
    }
  }
}

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

agentresources mcp in other clients