AgentHubAgentHub

Repo Memory

MCP ServerMCP Registry官方收录

io.github.yubinkim444/repo-memory · v0.2.0

Shared, git-tracked working memory for AI agents on the same codebase.

概览

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

安装

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

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

环境变量

REPO_MEMORY_ROOT可选

Absolute path to the repository whose .ai-memory/ to read/write. Defaults to the current working directory.

相关资源

统一 Manifest

{
  "id": "io.github.yubinkim444/repo-memory",
  "type": "mcp-server",
  "version": "0.2.0",
  "displayName": "Repo Memory",
  "description": "Shared, git-tracked working memory for AI agents on the same codebase.",
  "repository": {
    "url": "https://github.com/yubinkim444/repo-memory",
    "source": "github"
  },
  "distribution": {
    "packages": [
      {
        "registryType": "pypi",
        "identifier": "repo-memory-mcp",
        "version": "0.2.0",
        "runtimeHint": "uvx",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "REPO_MEMORY_ROOT",
            "description": "Absolute path to the repository whose .ai-memory/ to read/write. Defaults to the current working directory."
          }
        ]
      }
    ],
    "remotes": []
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "io.github.yubinkim444/repo-memory",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.yubinkim444%2Frepo-memory/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
Repo Memory — MCP Server 安装与配置 · AgentHub