ai-divination-mcp
This server provides audited divination tools for AI agents, enabling them to generate and interpret tarot, I Ching, Xiao Liu Ren, and Bazi results without inventing outcomes.
Tarot Draw (
tarot.draw): Draws tarot cards from major or full deck with spread options (single,three-card,decision) and optional reversals; supports seeded draws for reproducibility.I Ching Cast (
iching.cast): Casts hexagrams viacoins,yarrow, ormanualline input; supports seeded casts and returns primary and resulting hexagrams.Xiao Liu Ren Cast (
xiaoliuren.cast): Casts using lunar-style numbers (month/day/hour) or a Gregorian datetime, with optional lunar-time support (requireslunar-pythonfor lunar casts).Bazi Cast (
bazi.cast): Generates a Four Pillars chart (stems, branches, wuxing) from a Gregorian birth datetime; requires optionallunar-python.Interpretation Templates (
interpretation_template): Returns shared and per-skill interpretation guidelines to help agents respond safely, avoiding fatalism, certainty, and professional advice framing.
Allows OpenAI agents (e.g., Codex) to use divination tools via the MCP server.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@ai-divination-mcpDraw three tarot cards about my conflicting career path."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Oraclebone
The bone cracks. The model reads.
Three thousand years ago, Shang kings carved their divinations into bone — the first auditable record of an oracle at work. Oraclebone brings the same discipline to AI agents: audited scripts produce the draw, the hexagram, the pillars; the model only interprets what it is given. It never invents the result.
🔮 Open-source divination toolkit for AI agents, formerly known as ai-divination-skills (renamed in v8.0.0 — the old PyPI package is frozen; install oraclebone instead).
oraclebone is a practical skill collection for tarot, I Ching, Xiao Liu Ren, and future symbolic systems. It is built for agent workflows that need auditable randomness, clear method boundaries, and reusable interpretation templates.
This project treats divination as symbolic reasoning and reflection, not deterministic prediction.
⚡ One-line Install for AI Agents
Paste this into your AI agent:
Install Oraclebone for this agent: https://raw.githubusercontent.com/sapuyou45-bit/oraclebone/main/docs/install.mdOr install directly for Claude-style local skills:
curl -fsSL https://raw.githubusercontent.com/sapuyou45-bit/oraclebone/main/install.sh | bashThe default target is ~/.claude/skills. Set AI_SKILLS_DIR for another agent skill directory.
Related MCP server: 命盘 Mingpan
✨ Overview
Most AI divination prompts let the model invent the result. This repo separates the two jobs:
A local script produces the card draw, hexagram, or Xiao Liu Ren position.
The AI agent interprets that generated result with clear safety boundaries.
That makes readings easier to test, reproduce, audit, and reuse across agents.
🧭 Methodological Rigor
The core rule is simple: scripts or user-provided physical casts generate the divination result; AI interprets that result and does not generate the divination result.
This is not scientific proof of divination efficacy. It is a stricter workflow for symbolic reasoning:
real readings use system randomness by default
seeded mode is only for tests and reproducible demos
traditional methods and limitations are documented per skill
JSON outputs include enough metadata to audit the method
approximate modes emit warnings instead of pretending to be traditional
🌐 Multilingual Docs
The GitHub Pages site now defaults to Simplified Chinese. Use the page header switcher there when you want English or Japanese.
Local preview:
python3 -m http.server 8000 -d docsPublished site:
https://sapuyou45-bit.github.io/oraclebone/🧩 Included Skills
Skill | What it does | Script |
| Draws tarot cards for reflection, decisions, creative blocks, and project reframing. |
|
| Casts six-line I Ching hexagrams with primary and resulting hexagrams. |
|
| Casts Xiao Liu Ren from lunar-style numbers or a Gregorian time fallback. |
|
| Casts a Bazi (Four Pillars / 八字) chart from a Gregorian birth datetime. Requires the optional |
|
🚀 Quick Start
Install from PyPI:
pip install oracleboneOr from a checkout:
pip install .Use editable mode while developing:
pip install -e .Use one command for every system:
ai-divination tarot --deck major --spread three-card --reversals
ai-divination iching --method yarrow
ai-divination xiaoliuren --method numbers --month 3 --day 12 --hour 7Ask for an agent interpretation template:
ai-divination template tarotUse the Python API directly:
from oraclebone.tarot import draw
from oraclebone.iching import cast
from oraclebone.xiaoliuren import cast_numbersYou can still run the underlying scripts directly:
python3 skills/tarot/scripts/draw.py --deck major --spread three-card --reversals
python3 skills/iching/scripts/cast.py --method coins
python3 skills/iching/scripts/cast.py --method yarrow
python3 skills/xiaoliuren/scripts/cast.py --method numbers --month 3 --day 12 --hour 7Use a seed for reproducible demos:
python3 skills/tarot/scripts/draw.py --spread decision --seed demo
python3 skills/iching/scripts/cast.py --method yarrow --seed demoAll scripts output JSON.
📦 Install as Agent Skills
For AI-agent-guided setup, use the remote install runbook:
Install Oraclebone for this agent: https://raw.githubusercontent.com/sapuyou45-bit/oraclebone/main/docs/install.mdFor direct shell install:
curl -fsSL https://raw.githubusercontent.com/sapuyou45-bit/oraclebone/main/install.sh | bashThe installer copies tarot, iching, and xiaoliuren into ~/.claude/skills by default. To target another agent, set AI_SKILLS_DIR before running it.
Manual install is just copying the folders you want into your agent's skill directory:
mkdir -p ~/.claude/skills
cp -R skills/tarot ~/.claude/skills/tarot
cp -R skills/iching ~/.claude/skills/iching
cp -R skills/xiaoliuren ~/.claude/skills/xiaoliurenEach skill is self-contained:
skills/name/
SKILL.md
agents/openai.yaml
scripts/
references/Install individual folders, not the entire repository, when you only want one skill.
Each skill script also works in single-folder mode. If the Python package is installed, the script delegates to the package runtime. If only the skill folder is copied, it falls back to the bundled standalone script in that skill.
Per-host adapters
Every skill ships four adapter files in skills/<skill>/agents/:
Host | File | How it is invoked |
OpenAI / Codex skills |
| Skill metadata + brand icons. |
Claude Desktop / claude.ai project skills |
| Tool spec that runs |
Gemini CLI / Gemini Extensions |
| Extension manifest that runs the same CLI. |
Cursor |
| Rule file with hard "never invent the draw" guard. |
All four adapters route through the same audited ai-divination <skill> CLI, so the agent host never invents the result.
🧠 Use it from Claude Desktop / Codex / any MCP host
oraclebone ships a built-in MCP server (ai-divination-mcp). Any
Model Context Protocol host — Claude Desktop, Codex,
Continue, Cursor — can mount it with a single config line, and the model gets five tools:
tarot_draw, iching_cast, xiaoliuren_cast, bazi_cast, and interpretation_template.
The model never invents the draw; the server runs the audited scripts locally.
Claude Desktop
Install the package once:
pip install oracleboneThen edit ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or
%APPDATA%\Claude\claude_desktop_config.json (Windows):
{
"mcpServers": {
"divination": {
"command": "ai-divination-mcp"
}
}
}Restart Claude Desktop. Ask "draw three tarot cards for my decision" — Claude will call
tarot_draw and interpret the JSON output.
Codex / Continue / Cursor
Any MCP-aware host follows the same pattern. The server speaks JSON-RPC 2.0 over stdio with no third-party dependencies.
Per-client setup guides
Copy-paste JSON configs and example prompts for each host:
🤖 Agent Behavior
Each skill instructs the agent to:
generate or accept a concrete draw/cast result
read concise reference material only when needed
interpret with the shared response contract
avoid certainty, fatalism, and professional advice
Shared guidance lives in:
shared/methodology.mdshared/interpretation-protocol.mdshared/response-contract.mdshared/randomness-protocol.mdshared/safety-policy.mdshared/interpretation-style.md
🧪 Examples
examples/tarot-decision.mdexamples/iching-strategy.mdexamples/xiaoliuren-daily.md
🛡️ Safety Boundaries
These skills are not for medical, legal, financial, or crisis guidance.
Good readings should:
frame the result as symbolic reflection
connect claims to the generated result
preserve user agency
offer small, reversible next steps
state uncertainty clearly
See ETHICS.md for the full project stance.
🛠️ Development
No runtime dependencies are required beyond Python 3.
Run tests:
python3 -m unittest discover -s testsCurrent coverage checks:
unified CLI routing
package-only CLI execution
importable Python APIs
single-folder skill execution
skill metadata and asset contracts
interpretation protocol templates
tarot spread output
I Ching cast structure and manual lines
Xiao Liu Ren number and time fallback behavior
💬 Community
Releases: https://github.com/sapuyou45-bit/oraclebone/releases
Roadmap:
ROADMAP.mdDiscussions: https://github.com/sapuyou45-bit/oraclebone/discussions
Issues: pick a
good first issueor propose anew-skillSecurity: see
SECURITY.mdfor private vulnerability reporting
🗺️ Roadmap
Near-term:
Add a published package workflow.
Expand automated skill validation in CI.
Add richer reference material for each MVP skill.
Add more example readings.
Add more agent integration examples.
Later:
meihualiuyaorunesnumerologyastrology
📄 License
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- Flicense-qualityBmaintenanceEnables traditional Chinese metaphysics tools like Bazi, Ziwei, and Qimen via MCP, integrating AI analysis for divination and fortune-telling.418
- AlicenseAqualityCmaintenanceProvides traditional Chinese astrology (Bazi, Ziwei) and divination (Liuyao, Meihua, Qimen, etc.) calculations as MCP tools for AI assistants.121735102Apache 2.0
- Flicense-qualityBmaintenanceMCP server that calculates saju (four pillars) from birth date/time and provides entertaining interpretations of daily fortune, yearly luck, compatibility, name analysis, and tarot using MIT-licensed manseryeok-js.
- Alicense-qualityBmaintenanceMCP server that generates fortune context packs based on Saju, Zi Wei Dou Shu, and Western astrology for AI interpretation, enabling reflective entertainment and structured self-counseling in KakaoTalk conversations.AGPL 3.0
Related MCP Connectors
Tarot MCP — wraps tarotapi.dev (free, no auth)
MCP server for AI dialogue using various LLM models via AceDataCloud
Official remote MCP server for Archivist AI TTRPG campaign memory: characters, sessions, and more.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/sapuyou45-bit/oraclebone'
If you have feedback or need assistance with the MCP directory API, please join our Discord server