Skip to content
VS Code

getMe MCP Server for VS Code

io.github.aatirnadim/getme-mcp-server

An MCP server that exposes getMe key-value operations as MCP tools

client:VS Code transport:stdio runtime:pypi

Install getMe MCP Server in VS Code

.vscode/mcp.json

{
  "inputs": [
    {
      "type": "promptString",
      "id": "getme-socket-path",
      "description": "GETME_SOCKET_PATH",
      "password": true
    },
    {
      "type": "promptString",
      "id": "getme-read-only",
      "description": "GETME_READ_ONLY",
      "password": true
    },
    {
      "type": "promptString",
      "id": "getme-allow-clear",
      "description": "GETME_ALLOW_CLEAR",
      "password": true
    },
    {
      "type": "promptString",
      "id": "getme-key-prefix",
      "description": "GETME_KEY_PREFIX",
      "password": true
    }
  ],
  "servers": {
    "getme-mcp-server": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "getme-mcp-server"
      ],
      "env": {
        "GETME_SOCKET_PATH": "${input:getme-socket-path}",
        "GETME_READ_ONLY": "${input:getme-read-only}",
        "GETME_ALLOW_CLEAR": "${input:getme-allow-clear}",
        "GETME_KEY_PREFIX": "${input:getme-key-prefix}"
      }
    }
  }
}

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

getMe MCP Server in other clients