Ahme MCP Server

AHME is a **local sidecar daemon** that sits quietly beside your AI coding assistant. As you work, it compresses your conversation history into a

Local serverstdioPython

What is the Ahme MCP MCP server?

AHME is a local sidecar daemon that sits quietly beside your AI coding assistant. As you work, it compresses your conversation history into a dense Master Memory Block using a local Ollama model — no cloud, no tokens wasted, no. The ahme mcp mcp server wraps that behind the Model Context Protocol, so an assistant can use it through 5 defined tools rather than through you.

Adding it to your client

Setup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client.

Its toolset

Everything the assistant can do here goes through one of these:

  • ingest_context — text: string
  • get_master_memory — reset?: bool (default true)
  • clear_context — —
  • Prerequisites — The Prerequisites tool exposed by this server
  • Configure — That's the only line you need to change. Everything else is pre-configured

Configuration

You will need one environment variable: PYTHONPATH. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

  • Python 3.11+ - Ollama running locally - A small model pulled: ollama pull qwen2:1.5b (or any 1–4B model)

Caveats

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the ahme mcp mcp server does with a few real requests.

When to reach for it

This sits in the knowledge and memory group, where several servers overlap in what they claim to do but differ sharply once you actually set them up. Ahme MCP's toolset — ingest_context, get_master_memory, clear_context and 2 more — is a fair guide to whether it matches your workflow. It is maintained by dexopt; worth a glance at recent repository activity before you build anything load-bearing on it.

We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.

Available tools

ToolWhat it does
ingest_contexttext: string
get_master_memoryreset?: bool (default true)
clear_context
PrerequisitesThe Prerequisites tool exposed by this server.
ConfigureThat's the only line you need to change. Everything else is pre-configured.

Configuration

  • Python 3.11+ - Ollama running locally - A small model pulled: ollama pull qwen2:1.5b (or any 1–4B model)
VariableDescriptionRequired
PYTHONPATHFilesystem location the server is allowed to use.Optional

Example prompts to try

  • Use Ahme MCP to ingest context.
  • Use Ahme MCP to get master memory.
  • Use Ahme MCP to clear context.

Frequently asked questions

It connects Ahme MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 5 tools (ingest_context, get_master_memory, clear_context, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Ahme MCP directly.