Skip to main content

MCP server for getMe (HTTP over Unix domain socket).

Project description

getMe Logo

getMe MCP Server

An MCP server that exposes getMe key-value operations as Model Context Protocol (MCP) tools, enabling LLMs to talk to the getMe core database over HTTP via a Unix Domain Socket (UDS).

🔗 Quick Links

Using the MCP Server

The getme-mcp-server package is published on PyPI. For integration with MCP-compatible clients like Claude Desktop, Cursor, or the MCP Inspector, you can seamlessly run it using uvx or pipx.

Claude Desktop Configuration

Add the following to your claude_desktop_config.json:

{
  "mcpServers": {
    "getme": {
      "command": "uvx",
      "args": ["getme-mcp-server"],
      "env": {
        "GETME_SOCKET_PATH": "/tmp/getMeStore/sockDir/getMe.sock",
        "GETME_KEY_PREFIX": "agent-context:",
        "GETME_READ_ONLY": "false"
      }
    }
  }
}

Opencode Configuration

For Opencode, the MCP configuration format differs slightly from Claude. Add the following to your opencode.json (or ~/.config/opencode/opencode.json):

{
  "mcp": {
    "getme": {
      "type": "local",
      "command": ["uvx", "getme-mcp-server"],
      "env": {
        "GETME_SOCKET_PATH": "/tmp/getMeStore/sockDir/getMe.sock",
        "GETME_KEY_PREFIX": "agent-context:",
        "GETME_READ_ONLY": "false"
      }
    }
  }
}

Key differences from Claude:

  • Uses "mcp" at the top level instead of "mcpServers".
  • Requires "type": "local".
  • The command is an array that includes both the executable and its arguments (e.g., ["uvx", "getme-mcp-server"]), whereas Claude separates them into "command" (string) and "args" (array).

Core Engine Lifecycle & Management

The MCP Server acts as a client bridge to the getMe database and does not manage the lifecycle of the core engine daemon.

  • Manual Startup: If you manually start the getMe core engine, you are responsible for terminating it.
  • Client/Agent Startup: If an MCP-compatible client (or an AI agent) runs an initialization script to start the database server, the daemon runs independently. When you close the MCP client, the getme-mcp-server process will cleanly terminate, but the getMe core engine daemon will continue running in the background. It falls on the user to manually terminate the daemon when it is no longer needed.

Features & Safety

  • Read-Only Mode: Ensure LLMs don't mutate data via GETME_READ_ONLY=true.
  • Destructive Operation Guards: The clear tool is disabled by default, ensuring agents can't accidentally drop the store.
  • Payload & Connection Limits: Defends against massive payloads/batches and re-uses HTTP connections for performance.
  • Prefix Isolation: Restrict the LLM to a specific namespace in the DB with GETME_KEY_PREFIX.
  • Masked Logging: Tool execution metadata is logged, but payloads are masked to prevent leaking secrets.

Configuration (Environment Variables)

Control safety rules and performance via environment variables.

  • GETME_SOCKET_PATH (default: /tmp/getMeStore/sockDir/getMe.sock): Path to the UNIX socket used by the core getMe daemon.
  • GETME_READ_ONLY (default: false): If true, only get and get_json tools are registered.
  • GETME_ALLOW_CLEAR (default: false): If true, enables the dangerous clear tool.
  • GETME_KEY_PREFIX (default: ""): String prefix prepended to all keys. Sandboxes the LLM (e.g., agent1:).
  • GETME_MAX_VALUE_SIZE_BYTES (default: 5242880 / 5MB): Limit on single value payload sizes.
  • GETME_MAX_BATCH_ITEMS (default: 100): Maximum keys processed in one batch_put.

Best Practices

  1. Sandbox with Prefixes: Always use GETME_KEY_PREFIX when handing the database over to an LLM. For instance, using GETME_KEY_PREFIX="claude:" ensures the model can't overwrite core application data.
  2. Restrict Privileges: If the agent only needs context (e.g., fetching RAG documents or reading app state), enforce GETME_READ_ONLY=true.
  3. Never Allow Clear: Keep GETME_ALLOW_CLEAR=false (the default) in production environments to prevent catastrophic drops caused by hallucinated commands.
  4. Volume Mounts: Make sure the environment running the MCP server has adequate read/write permissions to the GETME_SOCKET_PATH.

Tools

Once connected, the LLM has access to the following operations:

  • get(key) -> str
  • get_json(key) -> object
  • put(key, value) -> str
  • put_json(key, json_value) -> str
  • delete(key) -> str
  • clear() -> str (Requires GETME_ALLOW_CLEAR=true)
  • batch_put(pairs: object) -> object
  • batch_get(keys: list) -> object
  • batch_delete(keys: list) -> object

Development & Installation

Prereqs

  • uv installed
  • getMe core server running and listening on the Unix socket

Install from Source

cd mcp-server
uv sync

Fixing VS Code "package not installed" warnings

If Pylance shows warnings like Package "httpx" is not installed in the selected environment, VS Code is using a different Python interpreter than the uv virtualenv.

  • Open Command Palette → Python: Select Interpreter
  • Select: getMe/mcp-server/.venv/bin/python

This repo also includes a workspace setting that points the interpreter at mcp-server/.venv.

Run Locally

cd mcp-server
# optional override
export GETME_SOCKET_PATH=/tmp/getMeStore/sockDir/getMe.sock
uv run getme-mcp-server

Docker deployment

This MCP server speaks stdio (JSON-RPC), so when running in Docker you must avoid allocating a TTY.

Build the image:

cd mcp-server
docker compose build

Run it over stdio (recommended for MCP clients):

cd mcp-server
docker compose run --rm -T getme-mcp-server

The compose file bind-mounts the host UDS directory:

  • host: /tmp/getMeStore/sockDir
  • container: /tmp/getMeStore/sockDir

So the MCP server can reach the core getMe server via GETME_SOCKET_PATH=/tmp/getMeStore/sockDir/getMe.sock.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

getme_mcp_server-1.1.2.tar.gz (68.9 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

getme_mcp_server-1.1.2-py3-none-any.whl (9.4 kB view details)

Uploaded Python 3

File details

Details for the file getme_mcp_server-1.1.2.tar.gz.

File metadata

  • Download URL: getme_mcp_server-1.1.2.tar.gz
  • Upload date:
  • Size: 68.9 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/6.1.0 CPython/3.13.12

File hashes

Hashes for getme_mcp_server-1.1.2.tar.gz
Algorithm Hash digest
SHA256 263726374e5aee611df5dd5544a00f4c1f12fde2e27a3aa1c597ae5ab6abe47c
MD5 f9982d5b9906d784898044d4bea28730
BLAKE2b-256 74d7dbad51bb50d33d5edd45c2565494aebd6a43f8613c82318bbe8c58cd1e3b

See more details on using hashes here.

Provenance

The following attestation bundles were made for getme_mcp_server-1.1.2.tar.gz:

Publisher: mcp-server-ci.yml on AatirNadim/getMe

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file getme_mcp_server-1.1.2-py3-none-any.whl.

File metadata

File hashes

Hashes for getme_mcp_server-1.1.2-py3-none-any.whl
Algorithm Hash digest
SHA256 f1036e4e5826e8982aa62c83db819f26398e3a756a14065836dd5fa318a6b0ab
MD5 e07f6898806017e185a985d72a5d70ab
BLAKE2b-256 b6b9279ab249bc2e2148909225e5779df4d3e7e410ee60d90004a2966a85631e

See more details on using hashes here.

Provenance

The following attestation bundles were made for getme_mcp_server-1.1.2-py3-none-any.whl:

Publisher: mcp-server-ci.yml on AatirNadim/getMe

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page