Skip to content
VS Code

simple mcp http for VS Code

io.github.oleksii-donets/simple_mcp_http

A Test MCP server that provides tools, promts and resources

client:VS Code transport:stdio runtime:oci

Install simple mcp http in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "app-host",
      "description": "APP_HOST",
      "password": true
    },
    {
      "type": "promptString",
      "id": "app-port",
      "description": "APP_PORT",
      "password": true
    }
  ],
  "servers": {
    "simple_mcp_http": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "docker.io/d0nets/simple-mcp-http:0.0.4"
      ],
      "env": {
        "APP_HOST": "${input:app-host}",
        "APP_PORT": "${input:app-port}"
      }
    }
  }
}

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 http in other clients