Skip to main content
Glama
sapuyou45-bit

ai-divination-mcp

Oraclebone

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.

English | 简体中文 | 日本語

tests release PyPI PyPI Downloads Latest release License: MIT Python GitHub Discussions

🔮 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.md

Or install directly for Claude-style local skills:

curl -fsSL https://raw.githubusercontent.com/sapuyou45-bit/oraclebone/main/install.sh | bash

The 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:

  1. A local script produces the card draw, hexagram, or Xiao Liu Ren position.

  2. 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 ships a six-language switcher — 简体中文, English, 日本語, Português, 한국어, Español. It follows your browser language by default and remembers your manual choice.

Open the published site

Local preview:

python3 -m http.server 8000 -d docs

Published site:

https://sapuyou45-bit.github.io/oraclebone/

🧩 Included Skills

Skill

What it does

Script

tarot

Draws tarot cards for reflection, decisions, creative blocks, and project reframing.

skills/tarot/scripts/draw.py

iching

Casts six-line I Ching hexagrams with primary and resulting hexagrams.

skills/iching/scripts/cast.py

xiaoliuren

Casts Xiao Liu Ren from lunar-style numbers or a Gregorian time fallback.

skills/xiaoliuren/scripts/cast.py

bazi

Casts a Bazi (Four Pillars / 八字) chart from a Gregorian birth datetime. Requires the optional lunar-python extra.

skills/bazi/scripts/cast.py

🚀 Quick Start

Install from PyPI:

pip install oraclebone

Or 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 7

Ask for an agent interpretation template:

ai-divination template tarot

Use the Python API directly:

from oraclebone.tarot import draw
from oraclebone.iching import cast
from oraclebone.xiaoliuren import cast_numbers

You 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 7

Use a seed for reproducible demos:

python3 skills/tarot/scripts/draw.py --spread decision --seed demo
python3 skills/iching/scripts/cast.py --method yarrow --seed demo

All 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.md

For direct shell install:

curl -fsSL https://raw.githubusercontent.com/sapuyou45-bit/oraclebone/main/install.sh | bash

The 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/xiaoliuren

Each 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

openai.yaml

Skill metadata + brand icons.

Claude Desktop / claude.ai project skills

claude.yaml

Tool spec that runs ai-divination <skill>.

Gemini CLI / Gemini Extensions

gemini.yaml

Extension manifest that runs the same CLI.

Cursor

cursor.mdc

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 oraclebone

Then 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.md

  • shared/interpretation-protocol.md

  • shared/response-contract.md

  • shared/randomness-protocol.md

  • shared/safety-policy.md

  • shared/interpretation-style.md

🧪 Examples

  • examples/tarot-decision.md

  • examples/iching-strategy.md

  • examples/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 tests

Current 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

🗺️ 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:

  • meihua

  • liuyao

  • runes

  • numerology

  • astrology

📄 License

MIT

Available Tools

5 tools
bazi_castA

Cast a Bazi (八字 / Four Pillars) chart from a Gregorian birth datetime. The host MUST NOT invent pillars, stems, branches, or wuxing. Requires the optional lunar-python dependency.

ParametersJSON Schema
NameRequiredDescriptionDefault
datetimeYesGregorian ISO 8601 birth datetime, e.g. 1990-05-20T14:30:00. The hour pillar requires an exact birth time.
timezoneNoIANA timezone name for the birth time, e.g. Asia/Shanghai.
longitudeNoBirth longitude in degrees East; enables true-solar-time correction. Requires timezone.

Output Schema

ParametersJSON Schema
NameRequiredDescription
notesYes
engineYes
inputsYes
systemYes
pillarsYes
accuracyYes
shengxiaoYes
day_masterYes
lunar_dateYes
lunar_year_zodiacNo
five_elements_tallyYes

TDQS

A4.2/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden. It adds meaningful behavioral guardrails: the host MUST NOT invent pillars, stems, branches, or wuxing, and it discloses the lunar-python dependency. It does not describe the failure mode if the dependency is missing, but this is still strong behavioral disclosure for a computation-heavy tool.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences with no filler: it front-loads the core action and resource, then states the critical operational constraints. Every sentence earns its place, and the result is compact without sacrificing important detail.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the presence of an output schema and fully covered parameters, the description adequately covers the human-guardrail and dependency context. It could go further by addressing edge cases like the Zi-hour day boundary or missing-dependency behavior, but the current combination is sufficient for an agent to invoke the tool correctly in most cases.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the schema already documents all three parameters. The description adds no parameter-specific meaning beyond what the schema provides, such as the exact-time requirement for the hour pillar and longitude enabling true-solar-time correction. Baseline 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with a specific verb ('Cast') and names the exact resource ('Bazi (八字 / Four Pillars) chart') plus the required input format ('Gregorian birth datetime'). This clearly differentiates it from sibling tools like tarot_draw, iching_cast, and xiaoliuren_cast, which represent different divination systems.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

While the description does not explicitly name sibling alternatives, it establishes a clear trigger scenario: casting a Bazi chart from a Gregorian birth datetime, with exact birth time and optional timezone/longitude prerequisites. The context is clear enough for an agent to know when this tool applies, though explicit 'use X instead' guidance is absent.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

iching_castA

Cast an I Ching hexagram. The host MUST NOT invent the cast. Use method=coins, yarrow, or manual (with manual_lines).

ParametersJSON Schema
NameRequiredDescriptionDefault
seedNoOptional. Test/demo only.
methodNoyarrow
manual_linesNoRequired when method=manual. Six comma-separated line values 6/7/8/9.

Output Schema

ParametersJSON Schema
NameRequiredDescription
linesYes
methodYes
systemYes
warningNo
line_orderYes
randomnessYes
changing_linesYes
method_detailsYes
primary_hexagramYes
requested_methodYes
line_probabilitiesYes
resulting_hexagramYes
changing_line_textsYes

TDQS

A4.4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the burden of disclosing behavioral traits. It adds critical transparency by prohibiting invented casts and explaining the manual_lines requirement for manual method. This goes beyond the schema by highlighting a key safety rule. It does not cover return format, but an output schema exists, reducing that need.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two concise sentences deliver the essential information without redundancy. The instruction is front-loaded, and every phrase earns its place, covering core action, a critical constraint, and parameter guidance.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool has an output schema and moderate complexity, the description covers the key aspects: action, methods, and a crucial anti-hallucination rule. It does not explain the seed parameter's purpose beyond the schema, but the schema already marks it as optional test/demo. Overall, it is sufficiently complete for selection and invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 67%, with seed and manual_lines documented. The description adds meaning by explaining the method enum values and the conditional requirement for manual_lines when method=manual. This clarifies relationships between parameters beyond the schema's individual descriptions.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's function: 'Cast an I Ching hexagram.' The verb 'cast' and resource 'I Ching hexagram' are specific and unambiguous. It naturally differentiates from sibling tools like tarot_draw and bazi_cast, which target different divination systems.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides explicit usage constraints: 'The host MUST NOT invent the cast' and specifies valid methods ('coins, yarrow, or manual'). It also clarifies the dependency between method and manual_lines. However, it does not explicitly discuss when to choose this tool over alternatives, though the context implies it.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

interpretation_templateA

Return the interpretation template (shared + per-skill) that the host should follow before writing an interpretation.

ParametersJSON Schema
NameRequiredDescriptionDefault
skillNoshared

TDQS

A3.9/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden. It uses the verb 'Return', which implies a safe read operation, but it does not explicitly state that it is non-destructive or list any side effects. It does add context about the template being shared + per-skill and the intended usage phase, which is helpful but not exhaustive.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single sentence that immediately states the action and resource. Every word contributes value, and it is front-loaded with the primary purpose. No unnecessary detail or repetition.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool with one optional parameter, no annotations, and no output schema, the description provides enough to understand the basic purpose and usage timing. However, it does not describe the structure of the returned template or any edge-case behavior (e.g., what happens when 'skill' is omitted). It is minimally sufficient but leaves some ambiguity.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema has one parameter with an enum but no description (0% schema description coverage). The description partially compensates by mentioning 'shared + per-skill', which hints that the 'skill' parameter selects between shared and skill-specific templates. However, it does not explicitly explain the parameter name, default behavior, or value meanings beyond what the enum provides. Adequate but with a gap.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('Return') and a clear resource ('interpretation template'). It also clarifies a key distinction by mentioning 'shared + per-skill', which differentiates this tool from the sibling casting/drawing tools. It fully states what the tool does.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives clear usage context: 'before writing an interpretation'. This implies the tool is used as a prerequisite for interpretation-writing. However, it does not explicitly mention alternatives or when not to use it, so it lacks exclusions. Overall, the timing is clearly stated.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

tarot_drawA

Draw tarot cards with audited Fisher-Yates shuffle. The host MUST NOT invent the draw. Omit seed for real readings; seeded mode is for tests and reproducible demos only.

ParametersJSON Schema
NameRequiredDescriptionDefault
deckNoMajor arcana only (22 cards) or full 78-card deck.major
seedNoOptional. Test/demo only.
spreadNothree-card
reversalsNo

Output Schema

ParametersJSON Schema
NameRequiredDescription
deckYes
cardsYes
spreadYes
systemYes
rng_modeYes
deck_sizeYes
draw_countYes
randomnessYes
drawn_indicesYes
reversals_enabledYes
shuffle_algorithmYes

TDQS

A4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description carries the burden of behavioral disclosure. It reveals that the shuffle is audited and strongly instructs the host not to invent the draw, which is critical for correct use. It stops short of describing output semantics, but the output schema likely handles that.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is three tight sentences with no filler. It front-loads the purpose, then supplies critical behavioral and usage guidance. Every sentence adds value.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The description covers core draw behavior and seed usage, but for a 4-parameter tool with no annotations, it omits explanation of spread types (decision, creative, project) and the meaning of reversals. These gaps reduce completeness despite the output schema.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema covers `deck` and `seed` (50%), but the description only restates `seed`'s test/demo purpose already in the schema, adding no new meaning. It fails to explain `spread` and `reversals`, which have no schema descriptions, so the low coverage is not compensated.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description opens with 'Draw tarot cards', a specific verb and resource, and adds 'audited Fisher-Yates shuffle' to distinguish it from other divination tools. Sibling tools like iching_cast and xiaoliuren_cast are clearly different systems, so this uniquely identifies the tool's purpose.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives clear context on when to omit `seed` for real readings versus using seeded mode for tests/demos, which is an important usage guideline. It does not explicitly mention alternatives or when not to use the tool, but the distinct sibling names make that less critical.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

xiaoliuren_castA

Cast Xiao Liu Ren (小六壬). The host MUST NOT invent the cast. method=numbers needs month/day/hour, method=time and method=lunar_time take an ISO datetime (lunar_time requires the optional lunar-python dependency).

ParametersJSON Schema
NameRequiredDescriptionDefault
dayNo
hourNoChinese hour branch index (1-12), not clock hour.
monthNo
methodNonumbers
datetimeNoISO 8601 datetime for method=time or lunar_time.

Output Schema

ParametersJSON Schema
NameRequiredDescription
inputsYes
methodYes
systemYes
formulaYes
warningNo
accuracyYes
datetimeNo
positionYes
lunar_dateNo
calendar_noteNo

TDQS

A3.9/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations, the description must carry the behavioral burden. It does state a critical integrity rule, 'The host MUST NOT invent the cast', and flags the optional lunar-python dependency. It does not disclose side effects, permissions, error conditions, or whether the result is deterministic, so behavioral disclosure is only partial.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two tight sentences deliver the purpose, the no-invention constraint, and the mode-dependent input requirements with no filler. Important information is front-loaded and every clause adds value.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The output schema covers return values, and the description covers method-to-parameter mapping and the dependency caveat. Still, the ambiguity between method=time and method=lunar_time, plus the unstated lunar meaning of month/day/hour, leaves real gaps for an agent trying to select the correct invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is only 40%, and the description compensates by mapping methods to required parameters: numbers needs month/day/hour, while time modes need datetime. This adds conditional meaning beyond the schema, though it leaves the lunar-calendar basis of the numeric inputs implicit.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The opening phrase 'Cast Xiao Liu Ren (小六壬)' uses a specific verb and resource, and the subject clearly separates it from sibling tools such as bazi_cast, tarot_draw, and iching_cast. The rest of the description clarifies the casting modes rather than blurring the purpose.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives concrete conditions for method=numbers versus method=time/lunar_time, so an agent knows which parameter group is needed. However, it does not explain the difference between method=time and method=lunar_time beyond the dependency, and it never tells an agent when to choose this tool over the sibling divination tools.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

TDQS

A4.1/5.0
Disambiguation5/5

Each divination tool targets a distinct practice—bazi, tarot, I Ching, and Xiao Liu Ren—so there is no overlap in purpose. The interpretation_template tool is clearly separate, providing guidance rather than performing a cast. An agent can confidently select the right tool for a requested method.

Naming Consistency4/5

Tool names follow a consistent lowercase_snake_case pattern with a domain noun followed by an action (bazi_cast, iching_cast, xiaoliuren_cast, tarot_draw). The verb varies appropriately to the divination style, and interpretation_template breaks the action pattern but is still predictable as a resource-based tool.

Tool Count5/5

Five tools is well-scoped for a specialized divination server: four distinct casting methods plus one shared interpretation template. There is no bloat or obvious redundancy.

Completeness4/5

The server covers the core casting lifecycle for all four divination methods and provides interpretation guidance. Minor gaps exist, such as no tool to list available divination types or retrieve past casts, but these are not essential for the apparent purpose.

Maintenance

ActivityMaintained
ResponsivenessSyncing

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • F
    license
    Not graded
    quality
    B
    maintenance
    Enables traditional Chinese metaphysics tools like Bazi, Ziwei, and Qimen via MCP, integrating AI analysis for divination and fortune-telling.
    516
  • A
    license
    A
    quality
    A
    maintenance
    Provides traditional Chinese astrology (Bazi, Ziwei) and divination (Liuyao, Meihua, Qimen, etc.) calculations as MCP tools for AI assistants.
    17
    230
    106
    Apache 2.0
  • F
    license
    Not graded
    quality
    B
    maintenance
    MCP 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.
  • F
    license
    Not graded
    quality
    C
    maintenance
    An I-Ching oracle MCP server for casting hexagrams, looking up bilingual classical sources, and generating grounded Wilhelm/Baynes-style reflections.
    1

Latest Blog Posts

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