Widemem Ai MCP Server

An open-source AI memory layer that actually remembers what matters. Local-first, batteries-included, and opinionated about not forgetting your

Local serverstdioPython

What is the Widemem Ai MCP server?

Widemem Ai MCP server exists for a simple reason — assistants are far more useful when they can act on Widemem Ai directly instead of describing what you should do. An open-source AI memory layer that actually remembers what matters. Local-first, batteries-included, and opinionated about not forgetting your user's blood type.

What the assistant can call

Once Widemem Ai is connected, these are the calls the assistant has available:

  • Function — Formula
  • exponential — e^(-rate * days)
  • linear — max(1 - rate * days, 0)
  • step — 1.0 / 0.7 / 0.4 / 0.1 at 7/30/90 days
  • none — Always 1.0
  • Tiers — Query routing uses keyword heuristics (no extra LLM call) with a fallback chain. If the preferred tier has no results, it falls back to the next

Configuration and credentials

You will need one environment variable: QDRANT_URL. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.

Setting it up

widemem-ai on PyPI is all you need. Most clients run it directly, so configuration is a few lines and a restart.

Choosing this one

Plenty of AI and media services servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Widemem Ai's toolset — Function, exponential, linear and 3 more — is a fair guide to whether it matches your workflow. It is maintained by remete618; 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.

Before you rely on it

  • 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.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • MCP clients confirm each tool call by default. Leave that on until you have watched what the widemem ai mcp server does with a few real requests.

Available tools

ToolWhat it does
FunctionFormula
exponentiale^(-rate * days)
linearmax(1 - rate * days, 0)
step1.0 / 0.7 / 0.4 / 0.1 at 7/30/90 days
noneAlways 1.0
TiersQuery routing uses keyword heuristics (no extra LLM call) with a fallback chain. If the preferred tier has no results, it falls back to the next tier. No results left behind.

How to install the Widemem Ai MCP server

{
  "mcpServers": {
    "widemem-ai": {
      "command": "uvx",
      "args": ["widemem-ai"],
      "env": {
        "QDRANT_URL": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
QDRANT_URLEndpoint or connection string the server talks to.Yes

Example prompts to try

  • Use Widemem Ai to Function.
  • Use Widemem Ai to exponential.
  • Use Widemem Ai to linear.

Frequently asked questions

It connects Widemem Ai to MCP-compatible AI assistants such as Claude and Cursor, exposing 6 tools (Function, exponential, linear, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Widemem Ai directly.