PluginBench
MCP Server

Midas MCP Server

io.github.vornicx/midas

What is the Midas MCP server?

Local-first, source-traceable agent memory — no LLM at ingest, fully offline

How to install Midas

Copy-paste configuration for popular MCP clients.

transport: stdio
Config generated by PluginBench — verify against the source before use.
Environment / auth
  • MIDAS_MCP_DB

    Path to a SQLite file to persist memory across restarts (default: in-memory)

  • MIDAS_MCP_EMBEDDER

    Embedding backend: 'local' (bge ONNX, offline) or 'hashing' (default: local)

  • MIDAS_MCP_MAX_RECORDS

    Cap the store; above it the lowest-value memories are auto-forgotten (no LLM)

  • MIDAS_MCP_MIN_IMPORTANCE

    Relevance floor 1-5 for auto-capture; turns scoring below it are skipped

Claude Desktop
~/Library/Application Support/Claude/claude_desktop_config.json
{
  "mcpServers": {
    "midas": {
      "command": "uvx",
      "args": [
        "midas-memory-mcp"
      ],
      "env": {
        "MIDAS_MCP_DB": "<YOUR_MIDAS_MCP_DB>",
        "MIDAS_MCP_EMBEDDER": "<YOUR_MIDAS_MCP_EMBEDDER>",
        "MIDAS_MCP_MAX_RECORDS": "<YOUR_MIDAS_MCP_MAX_RECORDS>",
        "MIDAS_MCP_MIN_IMPORTANCE": "<YOUR_MIDAS_MCP_MIN_IMPORTANCE>"
      }
    }
  }
}
Cursor
~/.cursor/mcp.json
{
  "mcpServers": {
    "midas": {
      "command": "uvx",
      "args": [
        "midas-memory-mcp"
      ],
      "env": {
        "MIDAS_MCP_DB": "<YOUR_MIDAS_MCP_DB>",
        "MIDAS_MCP_EMBEDDER": "<YOUR_MIDAS_MCP_EMBEDDER>",
        "MIDAS_MCP_MAX_RECORDS": "<YOUR_MIDAS_MCP_MAX_RECORDS>",
        "MIDAS_MCP_MIN_IMPORTANCE": "<YOUR_MIDAS_MCP_MIN_IMPORTANCE>"
      }
    }
  }
}
Windsurf
~/.codeium/windsurf/mcp_config.json
{
  "mcpServers": {
    "midas": {
      "command": "uvx",
      "args": [
        "midas-memory-mcp"
      ],
      "env": {
        "MIDAS_MCP_DB": "<YOUR_MIDAS_MCP_DB>",
        "MIDAS_MCP_EMBEDDER": "<YOUR_MIDAS_MCP_EMBEDDER>",
        "MIDAS_MCP_MAX_RECORDS": "<YOUR_MIDAS_MCP_MAX_RECORDS>",
        "MIDAS_MCP_MIN_IMPORTANCE": "<YOUR_MIDAS_MCP_MIN_IMPORTANCE>"
      }
    }
  }
}
VS Code
.vscode/mcp.json
{
  "servers": {
    "midas": {
      "type": "stdio",
      "command": "uvx",
      "args": [
        "midas-memory-mcp"
      ],
      "env": {
        "MIDAS_MCP_DB": "<YOUR_MIDAS_MCP_DB>",
        "MIDAS_MCP_EMBEDDER": "<YOUR_MIDAS_MCP_EMBEDDER>",
        "MIDAS_MCP_MAX_RECORDS": "<YOUR_MIDAS_MCP_MAX_RECORDS>",
        "MIDAS_MCP_MIN_IMPORTANCE": "<YOUR_MIDAS_MCP_MIN_IMPORTANCE>"
      }
    }
  }
}
Claude Code
claude mcp add midas --env MIDAS_MCP_DB=<YOUR_MIDAS_MCP_DB> --env MIDAS_MCP_EMBEDDER=<YOUR_MIDAS_MCP_EMBEDDER> --env MIDAS_MCP_MAX_RECORDS=<YOUR_MIDAS_MCP_MAX_RECORDS> --env MIDAS_MCP_MIN_IMPORTANCE=<YOUR_MIDAS_MCP_MIN_IMPORTANCE> -- uvx midas-memory-mcp

Related MCP servers

Give your AI agent stealth web scraping with Cloudflare bypass and CSS selection, powered by Scrapling.

67k
Python
BSD-3-Clause
View repository →

Give your AI coding agent full control of a live Chrome browser for automation, debugging, and performance analysis.

45k
TypeScript
Apache-2.0
View repository →

Let AI agents manage your Puter files, websites, and serverless workers over MCP.

43k
TypeScript
AGPL-3.0
View repository →

Browser automation for AI agents via MCP, powering ByteDance's Agent TARS hybrid GUI/DOM browser control.

37k
TypeScript
Apache-2.0
View repository →

Run arbitrary shell commands from an MCP-connected AI agent.

37k
TypeScript
Apache-2.0
View repository →

Filesystem access MCP server from ByteDance's UI-TARS/Agent TARS ecosystem.

37k
TypeScript
Apache-2.0
View repository →