G

GetMe

Exposes a persistent key-value store as MCP tools, enabling AI clients to perform put, get, and delete operations on a Bitcask-inspired database.

GetMe·No reviews yet
Repo Docs
Share:

About

Exposes a persistent key-value store as MCP tools, enabling AI clients to perform put, get, and delete operations on a Bitcask-inspired database.

Example tools

Illustrative tool names — the actual tool set is defined by the server at runtime.

query
Run a read-only SQL query
list_tables
List tables in the connected database
describe_table
Return column info for a table

Screenshots

No screenshots yet.

Frequently Asked Questions

Common questions about GetMe.

What is the primary function of the GetMe MCP?
The GetMe MCP provides a persistent key-value store, exposing tools that allow AI clients to perform put, get, and delete operations. It is inspired by the Bitcask database model for data handling.
How can I integrate GetMe with an MCP client like Claude Desktop?
Integration typically involves configuring the client to recognize GetMe's stdio transport and available tools. This often requires specifying the server's executable path or connection details within the client's MCP settings.
Does GetMe require an API key or other authentication credentials?
No, the GetMe MCP does not require an API key, OAuth, or any other authentication credentials. It operates with an 'auth type: none' configuration.
What specific operations can AI clients perform using GetMe?
AI clients can interact with GetMe to execute fundamental database operations: putting (storing) new key-value pairs, getting (retrieving) stored values by their keys, and deleting existing key-value pairs.
What are the costs associated with using the GetMe MCP?
The GetMe MCP itself is open-source and free to use, as indicated by its GitHub repository. Operational costs would depend on the infrastructure you choose to host and run the server.
Are there any known limitations or prerequisites for using GetMe?
A key consideration is that GetMe uses a Bitcask-inspired database, which optimizes for write-heavy workloads and efficient reads. Performance may vary based on your specific access patterns and hardware.

Install GetMe

Claude Desktop

Add this to claude_desktop_config.json.

{
  "mcpServers": {
    "getme": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-getme"
      ]
    }
  }
}

Cursor

Add this to ~/.cursor/mcp.json.

{
  "mcpServers": {
    "getme": {
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-getme"
      ]
    }
  }
}

VS Code

Add this to your workspace settings.json.

{
  "mcp.servers": {
    "getme": {
      "type": "stdio",
      "command": "npx",
      "args": [
        "-y",
        "@modelcontextprotocol/server-getme"
      ]
    }
  }
}

Reviews

Sign in to leave a review.

No reviews yet. Be the first!

Discussion(0)

Sign in to join the discussion.

No comments yet.