Skip to content
VS Code

Manifold for VS Code

io.github.nonchan7720/manifold

MCP gateway aggregating MCP servers and OpenAPI/Swagger REST APIs behind one MCP endpoint

client:VS Code transport:stdio runtime:oci

Install Manifold in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "encrypt-key",
      "description": "ENCRYPT_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "server-name",
      "description": "SERVER_NAME",
      "password": true
    }
  ],
  "servers": {
    "manifold": {
      "type": "stdio",
      "command": "docker",
      "args": [
        "run",
        "-i",
        "--rm",
        "ghcr.io/nonchan7720/manifold:v1.15.0"
      ],
      "env": {
        "ENCRYPT_KEY": "${input:encrypt-key}",
        "SERVER_NAME": "${input:server-name}"
      }
    }
  }
}

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

Manifold in other clients