AgentHubAgentHub

agent-memory-mcp

MCP ServerMCP Registry官方收录

io.github.xultrax-web/agent-memory-mcp · v0.15.0

Markdown memory for AI agents. Files you can read, edit, grep, and commit. Not a database.

概览

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

安装

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

{
  "mcpServers": {
    "agent-memory-mcp": {
      "command": "npx",
      "args": [
        "-y",
        "@xultrax-web/agent-memory-mcp"
      ]
    }
  }
}

环境变量

AGENT_MEMORY_DIR可选

Absolute path to a custom memory storage directory. Overrides the default per-project location.

AGENT_MEMORY_SCOPE可选

Set to 'global' to store memories in ~/.agent-memory/ instead of the per-project default ./.agent-memory/.

AGENT_MEMORY_LOG可选

Log level: debug | info | warn | error. Defaults to info. Logs go to stderr (won't pollute MCP stdio).

相关资源

统一 Manifest

{
  "id": "io.github.xultrax-web/agent-memory-mcp",
  "type": "mcp-server",
  "version": "0.15.0",
  "displayName": "agent-memory-mcp",
  "description": "Markdown memory for AI agents. Files you can read, edit, grep, and commit. Not a database.",
  "repository": {
    "url": "https://github.com/xultrax-web/agent-memory-mcp",
    "source": "github"
  },
  "distribution": {
    "packages": [
      {
        "registryType": "npm",
        "identifier": "@xultrax-web/agent-memory-mcp",
        "version": "0.15.0",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "AGENT_MEMORY_DIR",
            "description": "Absolute path to a custom memory storage directory. Overrides the default per-project location."
          },
          {
            "name": "AGENT_MEMORY_SCOPE",
            "description": "Set to 'global' to store memories in ~/.agent-memory/ instead of the per-project default ./.agent-memory/."
          },
          {
            "name": "AGENT_MEMORY_LOG",
            "description": "Log level: debug | info | warn | error. Defaults to info. Logs go to stderr (won't pollute MCP stdio)."
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "io.github.xultrax-web/agent-memory-mcp",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.xultrax-web%2Fagent-memory-mcp/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
agent-memory-mcp — MCP Server 安装与配置 · AgentHub