Skip to content
VS Code

Agentic MCP for VS Code

io.github.hugolsramos01-bit/mcp-agentic-server

Local coding tools for ChatGPT Developer Mode and MCP clients with safe editing and shell execution.

client:VS Code transport:stdio runtime:npm

Install Agentic MCP in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "agentic-allowed-roots",
      "description": "AGENTIC_ALLOWED_ROOTS",
      "password": true
    }
  ],
  "servers": {
    "mcp-agentic-server": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "mcp-agentic-server"
      ],
      "env": {
        "AGENTIC_ALLOWED_ROOTS": "${input:agentic-allowed-roots}"
      }
    }
  }
}

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

Agentic MCP in other clients