Skip to content
VS Code

ManaBuy MCP Server for VS Code

io.github.manabuyteam/manabuy-mcp

ManaBuy MCP server for product search, order quote, and AI-assisted ordering.

client:VS Code transport:stdio runtime:npm

Install ManaBuy MCP Server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "manabuy-api-base-url",
      "description": "MANABUY_API_BASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "manabuy-environment",
      "description": "MANABUY_ENVIRONMENT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "manabuy-currency",
      "description": "MANABUY_CURRENCY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "manabuy-lang",
      "description": "MANABUY_LANG",
      "password": true
    },
    {
      "type": "promptString",
      "id": "manabuy-biz-channel",
      "description": "MANABUY_BIZ_CHANNEL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "manabuy-auth-token",
      "description": "MANABUY_AUTH_TOKEN",
      "password": true
    }
  ],
  "servers": {
    "manabuy-mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@manabuy/mcp-server"
      ],
      "env": {
        "MANABUY_API_BASE_URL": "${input:manabuy-api-base-url}",
        "MANABUY_ENVIRONMENT": "${input:manabuy-environment}",
        "MANABUY_CURRENCY": "${input:manabuy-currency}",
        "MANABUY_LANG": "${input:manabuy-lang}",
        "MANABUY_BIZ_CHANNEL": "${input:manabuy-biz-channel}",
        "MANABUY_AUTH_TOKEN": "${input:manabuy-auth-token}"
      }
    }
  }
}

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

ManaBuy MCP Server in other clients