Skip to content
VS Code

agentsbestfriend for VS Code

io.github.therealfloatdev/agentsbestfriend

MCP that provides fast, token-efficient tools for navigating, searching, and understanding codebases

client:VS Code transport:stdio runtime:npm

Install agentsbestfriend in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "abf-project-root",
      "description": "ABF_PROJECT_ROOT",
      "password": true
    }
  ],
  "servers": {
    "agentsbestfriend": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "agentsbestfriend"
      ],
      "env": {
        "ABF_PROJECT_ROOT": "${input:abf-project-root}"
      }
    }
  }
}

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

agentsbestfriend in other clients