Skip to content
VS Code

simple mcp for VS Code

io.github.oleksii-donets/simple_mcp

A Test MCP server that provides tools, promts and resources

client:VS Code transport:stdio runtime:oci

Install simple mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "app-transport",
      "description": "APP_TRANSPORT",
      "password": true
    }
  ],
  "servers": {
    "simple_mcp": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "docker.io/d0nets/simple-mcp:0.0.4"
      ],
      "env": {
        "APP_TRANSPORT": "${input:app-transport}"
      }
    }
  }
}

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

simple mcp in other clients