Audrey MCP Server

Local-first biological memory for coding agents: recall, consolidation, and pre-action Guard checks.

Remote serverstreamable-httpPython

What is the Audrey MCP server?

If you already use Audrey, the audrey mcp server is the piece that lets your assistant work with it directly. Local-first biological memory for coding agents: recall, consolidation, and pre-action Guard checks.

What the server does

Memory that shows up before your coding agent makes the same mistake twice.

Available tools

The toolset is worth reading before you wire it up, because it tells you what the integration is really for:

  • Development — The Development tool exposed by this server

Installation

Because this one is hosted, setup is mostly authentication — you point your client at the endpoint and approve access. Nothing runs on your machine, so there is no runtime to keep patched.

Credentials and setup notes

Configuration is passed through the environment: AUDREY_API_KEY, ANTHROPIC_API_KEY, OPENAI_API_KEY, AUDREY_HOST, ZEP_API_KEY. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

  • Node.js 20+ - npm package: audrey - Python client: audrey-memory - Default storage: local SQLite + FTS5 + sqlite-vec - Default embeddings: local 384-dimensional model For a project install with npm 12, approve Audrey's reviewed dependency scripts in the project root and rebuild once if npm reported that it blocked them: For Autopilot, prefer a global or otherwise stable installation. Hook

Where it fits

Among the knowledge and memory options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Audrey's toolset — Development — is a fair guide to whether it matches your workflow. It is maintained by Evilander; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Worth knowing first

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
DevelopmentThe Development tool exposed by this server.

How to install the Audrey MCP server

{
  "mcpServers": {
    "audrey": {
      "command": "npx",
      "args": ["-y", "audrey"],
      "env": {
        "AUDREY_API_KEY": "your-value",
        "ANTHROPIC_API_KEY": "your-value",
        "OPENAI_API_KEY": "your-value",
        "AUDREY_HOST": "your-value",
        "ZEP_API_KEY": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

  • Node.js 20+ - npm package: audrey - Python client: audrey-memory - Default storage: local SQLite + FTS5 + sqlite-vec - Default embeddings: local 384-dimensional model For a project install with npm 12, approve Audrey's reviewed dependency scripts in the project root and rebuild once if npm reported that it blocked them: For Autopilot, prefer a global or otherwise stable installation. Hook
VariableDescriptionRequired
AUDREY_API_KEYCredential the server authenticates with.Yes
ANTHROPIC_API_KEYCredential the server authenticates with.Yes
OPENAI_API_KEYCredential the server authenticates with.Yes
AUDREY_HOSTEndpoint or connection string the server talks to.Optional
ZEP_API_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use Audrey to Development.

Frequently asked questions

It connects Audrey to MCP-compatible AI assistants such as Claude and Cursor, exposing 1 tool (Development) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Audrey directly.