AgentHubAgentHub

Cathedral — Persistent Memory for AI Agents

MCP ServerMCP Registry官方收录

io.github.AILIFE1/cathedral-mcp · v1.1.0

Persistent memory and drift detection for AI agents across session restarts.

概览

Cathedral — Persistent Memory for AI Agents 是一个MCP Server,收录自 官方 MCP Registry。支持 streamable-http、stdio 传输。本页提供 Cursor、Claude Code 等客户端的安装配置片段。

安装

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

{
  "mcpServers": {
    "cathedral-mcp": {
      "command": "uvx",
      "args": [
        "cathedral-mcp"
      ],
      "env": {
        "CATHEDRAL_API_KEY": "<CATHEDRAL_API_KEY>"
      }
    }
  }
}

环境变量

CATHEDRAL_API_KEY必填secret

Your Cathedral API key from cathedral-ai.com

CATHEDRAL_BASE_URL可选

Cathedral API base URL (for self-hosted instances)

CATHEDRAL_SANITISE可选

Set to 1 to enable prompt injection filtering on memory content

相关资源

统一 Manifest

{
  "id": "io.github.AILIFE1/cathedral-mcp",
  "type": "mcp-server",
  "version": "1.1.0",
  "displayName": "Cathedral — Persistent Memory for AI Agents",
  "description": "Persistent memory and drift detection for AI agents across session restarts.",
  "repository": {
    "url": "https://github.com/AILIFE1/Cathedral",
    "source": "github",
    "subfolder": "mcp-server"
  },
  "homepage": "https://cathedral-ai.com",
  "distribution": {
    "packages": [
      {
        "registryType": "pypi",
        "identifier": "cathedral-mcp",
        "version": "1.1.0",
        "transport": "stdio",
        "environmentVariables": [
          {
            "name": "CATHEDRAL_API_KEY",
            "description": "Your Cathedral API key from cathedral-ai.com",
            "isRequired": true,
            "isSecret": true
          },
          {
            "name": "CATHEDRAL_BASE_URL",
            "description": "Cathedral API base URL (for self-hosted instances)"
          },
          {
            "name": "CATHEDRAL_SANITISE",
            "description": "Set to 1 to enable prompt injection filtering on memory content"
          }
        ]
      }
    ],
    "remotes": [
      {
        "transport": "streamable-http",
        "url": "https://cathedral-ai.com/mcp"
      }
    ]
  },
  "dependencies": [],
  "installTargets": [
    "claude-code",
    "claude-desktop",
    "cursor",
    "vscode"
  ],
  "keywords": [],
  "provenance": {
    "origin": "official-mcp-registry",
    "originalId": "io.github.AILIFE1/cathedral-mcp",
    "originalUrl": "https://registry.modelcontextprotocol.io/v0.1/servers/io.github.AILIFE1%2Fcathedral-mcp/versions/latest",
    "isOfficial": true,
    "status": "active"
  }
}
Cathedral — Persistent Memory for AI Agents — MCP Server 安装与配置 · AgentHub