Skip to content
VS Code

mcp for VS Code

com.wontopos/mcp

Wontopos (WOS) long-term memory - one memory across Claude Code, Cursor, and your agents.

client:VS Code transport:stdio runtime:npm

Install mcp in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "wontopos-api-key",
      "description": "WONTOPOS_API_KEY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "wontopos-user-id",
      "description": "WONTOPOS_USER_ID",
      "password": true
    },
    {
      "type": "promptString",
      "id": "wontopos-model",
      "description": "WONTOPOS_MODEL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "wontopos-verify",
      "description": "WONTOPOS_VERIFY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "wontopos-max-images",
      "description": "WONTOPOS_MAX_IMAGES",
      "password": true
    },
    {
      "type": "promptString",
      "id": "wontopos-base-url",
      "description": "WONTOPOS_BASE_URL",
      "password": true
    },
    {
      "type": "promptString",
      "id": "wontopos-timeout-ms",
      "description": "WONTOPOS_TIMEOUT_MS",
      "password": true
    },
    {
      "type": "promptString",
      "id": "wontopos-read-only",
      "description": "WONTOPOS_READ_ONLY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "wontopos-allow-store-override",
      "description": "WONTOPOS_ALLOW_STORE_OVERRIDE",
      "password": true
    },
    {
      "type": "promptString",
      "id": "wontopos-http-port",
      "description": "WONTOPOS_HTTP_PORT",
      "password": true
    },
    {
      "type": "promptString",
      "id": "wontopos-http-token",
      "description": "WONTOPOS_HTTP_TOKEN",
      "password": true
    },
    {
      "type": "promptString",
      "id": "wontopos-http-host",
      "description": "WONTOPOS_HTTP_HOST",
      "password": true
    },
    {
      "type": "promptString",
      "id": "wontopos-http-allowed-hosts",
      "description": "WONTOPOS_HTTP_ALLOWED_HOSTS",
      "password": true
    }
  ],
  "servers": {
    "mcp": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "wontopos-mcp"
      ],
      "env": {
        "WONTOPOS_API_KEY": "${input:wontopos-api-key}",
        "WONTOPOS_USER_ID": "${input:wontopos-user-id}",
        "WONTOPOS_MODEL": "${input:wontopos-model}",
        "WONTOPOS_VERIFY": "${input:wontopos-verify}",
        "WONTOPOS_MAX_IMAGES": "${input:wontopos-max-images}",
        "WONTOPOS_BASE_URL": "${input:wontopos-base-url}",
        "WONTOPOS_TIMEOUT_MS": "${input:wontopos-timeout-ms}",
        "WONTOPOS_READ_ONLY": "${input:wontopos-read-only}",
        "WONTOPOS_ALLOW_STORE_OVERRIDE": "${input:wontopos-allow-store-override}",
        "WONTOPOS_HTTP_PORT": "${input:wontopos-http-port}",
        "WONTOPOS_HTTP_TOKEN": "${input:wontopos-http-token}",
        "WONTOPOS_HTTP_HOST": "${input:wontopos-http-host}",
        "WONTOPOS_HTTP_ALLOWED_HOSTS": "${input:wontopos-http-allowed-hosts}"
      }
    }
  }
}

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

mcp in other clients