Fetches Pope Leo XIV's 2026 encyclical on AI and human dignity live from the Vatican website and exposes it through five structured tools. You get list_structure() for the full table of contents, get_chapter() and get_section() for navigating the five chapters and named sections, get_paragraph() for pulling individual numbered paragraphs, and search() for finding specific terms across the 245 paragraph text. Useful when you're working with theological or ethical AI frameworks and need to reference specific passages without dumping the entire encyclical into context. Runs via npx with no install required, or drop it into Claude Desktop's config.
An MCP server for navigating Magnifica Humanitas — Pope Leo XIV's 2026 encyclical on safeguarding the human person in the time of artificial intelligence.
Fetches the document live from the Vatican website and exposes it as structured MCP tools, so any LLM client can navigate the text without loading all 245 paragraphs into context at once.
| Tool | Description |
|---|---|
list_structure() | Full table of contents with paragraph ranges |
get_chapter(number) | Full text of a chapter (1–5) |
get_section(title) | Full text of a section by title (fuzzy match) |
get_paragraph(number) | A single numbered paragraph |
search(query, limit) | Find paragraphs containing a word or phrase |
npx (no install needed)npx magnifica-humanitas-mcp
uvx (requires uv)uvx magnifica-humanitas-mcp
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"magnifica-humanitas": {
"command": "npx",
"args": ["-y", "magnifica-humanitas-mcp"]
}
}
}
claude mcp add magnifica-humanitas -- npx -y magnifica-humanitas-mcp
docker run --rm grimalkinllc/magnifica-humanitas-mcp
The MCP server code is MIT licensed. The encyclical text is © Copyright Dicastery for Communication – Libreria Editrice Vaticana. This tool fetches that content from the Vatican's website at runtime and does not redistribute it.
See docs/contributing.md for development setup and release process.