Magisterium MCP Server
Enables AI assistants to query the Magisterium API for authoritative Catholic Church teaching with citations.
README
[ARCHIVED] Built in 2025 before an official Magisterium MCP server existed, for personal use in Cursor. Archived now that I've moved tooling and the gap this filled has closed. Kept as a reference example of an MCP server integrating an external API — demonstrating early MCP adoption, end-to-end deployment, and AI-assistant integration.
Magisterium MCP Server
An MCP server that provides AI assistants with access to the Magisterium API for authoritative Catholic Church teaching with citations.
Exposes one tool — magisterium_query — that any MCP-compatible client (Claude Desktop, Claude Code, Cursor, etc.) can call.
Remote MCP Endpoint
The server is hosted at https://magisterium.stephens.page/mcp — no local install required.
Claude Code
Add to ~/.claude/settings.json:
{
"mcpServers": {
"magisterium": {
"type": "url",
"url": "https://magisterium.stephens.page/mcp"
}
}
}
OpenClaw
Add to ~/.openclaw/openclaw.json. OpenClaw's URL-based transport is in the schema but not yet fully supported at runtime (#55087), so use the stdio transport with a local install for now:
{
mcp: {
servers: {
"magisterium": {
command: "/bin/bash",
args: ["/path/to/magisterium_mcp_server/run-magisterium.sh"],
},
},
},
}
Once OpenClaw ships native HTTP MCP support, you can switch to the remote endpoint:
{
mcp: {
servers: {
"magisterium": {
url: "https://magisterium.stephens.page/mcp",
},
},
},
}
See the Local Setup section below for install instructions.
Claude Desktop / Cursor / Other MCP Clients
Use the Streamable HTTP URL https://magisterium.stephens.page/mcp in your client's MCP configuration. Refer to your client's docs for the exact format.
Local Setup (Optional)
If you prefer to run the server locally via stdio:
Prerequisites
- Node.js 18+ (check with
node --version) - Magisterium API key from magisterium.com
Install
git clone https://github.com/JacobStephens2/magisterium_mcp_server.git
cd magisterium_mcp_server
npm install
npm run build
Create a .env file with your API key (see .env.example):
MAGISTERIUM_API_KEY=sk_your_key_here
Verify it works:
npm test
Configuring MCP Clients for Local Use
Add to your MCP config (claude_desktop_config.json for Desktop, ~/.claude/settings.json for Claude Code):
{
"mcpServers": {
"magisterium": {
"command": "/bin/bash",
"args": ["/path/to/magisterium_mcp_server/run-magisterium.sh"]
}
}
}
Tool: magisterium_query
| Parameter | Type | Required | Default | Description |
|---|---|---|---|---|
query |
string | yes | — | Question about Catholic Church teaching |
model |
string | no | magisterium-1 |
Model to use |
return_related_questions |
boolean | no | true |
Include related questions in response |
Example
{
"name": "magisterium_query",
"arguments": {
"query": "What does the Catholic Church teach about the Eucharist?"
}
}
The response includes the formatted teaching text, citations with document titles and authors, and optionally related follow-up questions.
Architecture
The server runs as a single Express process serving three endpoints:
/— Static frontend/api/query— REST API for the frontend/mcp— Streamable HTTP MCP endpoint for AI agents
Apache reverse-proxies /api and /mcp to the Node.js backend; TLS is terminated at the edge via Let's Encrypt.
Development
npm run build # Compile TypeScript to dist/
npm run dev # Watch mode — auto-rebuild on changes
npm start # Run the stdio MCP server
npm run web # Run the web server (REST API + MCP endpoint)
npm test # Test server responds to MCP handshake
The main source files are web-server.ts (Express server with REST + MCP endpoints) and mcp-magisterium.ts (stdio MCP server). After editing, run npm run build to recompile.
Troubleshooting
"Cannot find module" errors — Run npm install then npm run build.
"MAGISTERIUM_API_KEY environment variable is not set" — Ensure .env exists in the project root with your API key. The run-magisterium.sh wrapper script cds to the correct directory so dotenv can find it.
Server works manually but not in MCP client — Use the run-magisterium.sh wrapper script (not node directly). It ensures the working directory is correct regardless of how the client spawns the process.
"0 tools enabled" in Cursor — Fully quit and restart Cursor after adding the config. Check that the path in your config is correct and run-magisterium.sh is executable (chmod +x run-magisterium.sh).
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。