AGE-MCP-Server 镜像
这是 https://github.com/rioriost/homebrew-age-mcp-server 的镜像仓库,提供 Apache AGE 图数据库的 MCP 服务支持。
快速入门
前置条件
- 安装 Python 3.13 或更高版本
- 启用 Azure Database for PostgreSQL 中的 Apache AGE 扩展
- 在 PostgreSQL 数据库中加载 AGE 扩展:
CREATE EXTENSION IF NOT EXISTS age CASCADE;
安装
使用 Homebrew 安装: brew tap rioriost/age-mcp-server brew install age-mcp-server
使用 uv 安装: uv init your_project cd your_project uv venv source .venv/bin/activate uv add age-mcp-server
使用 Python venv(macOS/Linux): python3 -m venv .venv source .venv/bin/activate python3 -m pip install age-mcp-server
使用
配置 claude_desktop_config.json
文件,启动 Claude Desktop 客户端即可。
注意
默认禁用写操作。如需启用,请添加 --allow-write
参数。