Skip to content
VS Code

agents for VS Code

io.github.absolutejs/agents

Search verified agents and production agent-first AbsoluteJS packages.

client:VS Code transport:stdio runtime:npm

Install agents in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "absolute-agent-registry-url",
      "description": "ABSOLUTE_AGENT_REGISTRY_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "absolute-package-registry-url",
      "description": "ABSOLUTE_PACKAGE_REGISTRY_URL",
      "password": true
    }
  ],
  "servers": {
    "agents": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@absolutejs/agents-mcp"
      ],
      "env": {
        "ABSOLUTE_AGENT_REGISTRY_URL": "${input:absolute-agent-registry-url}",
        "ABSOLUTE_PACKAGE_REGISTRY_URL": "${input:absolute-package-registry-url}"
      }
    }
  }
}

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

agents in other clients