AgentHubAgentHub

Midas

MCP ServerMCP Registry官方收录

io.github.vornicx/midas · v0.0.1

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

概览

Midas 是一个MCP Server,收录自 官方 MCP Registry。支持 stdio 传输。本页提供 Cursor、Claude Code 等客户端的安装配置片段。

安装

选择你的平台查看安装方式

{
  "mcpServers": {
    "midas": {
      "command": "uvx",
      "args": [
        "midas-memory-mcp"
      ]
    }
  }
}

环境变量

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

相关资源

统一 Manifest

{
  "id": "io.github.vornicx/midas",
  "type": "mcp-server",
  "version": "0.0.1",
  "displayName": "Midas",
  "description": "Local-first, source-traceable agent memory — no LLM at ingest, fully offline",
  "repository": {
    "url": "https://github.com/vornicx/Midas",
    "source": "github"
  },
  "distribution": {
    "packages": [
      {
        "registryType": "pypi",
        "identifier": "midas-memory-mcp",
        "version": "0.0.1",
        "runtimeHint": "uvx",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "MIDAS_MCP_DB",
            "description": "Path to a SQLite file to persist memory across restarts (default: in-memory)"
          },
          {
            "name": "MIDAS_MCP_EMBEDDER",
            "description": "Embedding backend: 'local' (bge ONNX, offline) or 'hashing' (default: local)"
          },
          {
            "name": "MIDAS_MCP_MAX_RECORDS",
            "description": "Cap the store; above it the lowest-value memories are auto-forgotten (no LLM)"
          },
          {
            "name": "MIDAS_MCP_MIN_IMPORTANCE",
            "description": "Relevance floor 1-5 for auto-capture; turns scoring below it are skipped"
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "io.github.vornicx/midas",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.vornicx%2Fmidas/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
Midas — MCP Server 安装与配置 · AgentHub