Skip to main content
Glama
Espivc

ming-metaphysics-mcp

by Espivc

ming-metaphysics-mcp

Five Chinese metaphysics engines as MCP tools for Claude Desktop and any MCP-compatible client.

vs Cantian's bazi-mcp

Dimension

Cantian bazi-mcp

Ming ming-metaphysics-mcp

Arts covered

BaZi only

All five — BaZi + QMDJ + ZWDS + Feng Shui + I Ching

Engine depth

Good BaZi implementation

9.0–9.5/10 expert-verified across all five engines

Classical sourcing

Not documented

子平真詮, 淵海子平, 紫微斗數全書 + 108-title library cited

Output quality

Competent readings

Scholar-validated, bilingual (EN/ZH), report-grade depth

Consultation funnel

None

Master reading available via Ming Bot (link TBA)

Kua + Eight Mansions

QMDJ timing

✅ (sxtwl Ju computation)

I Ching (Liu Yao)

✅ (classical 納甲法)


Related MCP server: taibu

Tools

Tool

Engine

Description

ming_bazi_analyze

BaZi 八字

Four Pillars chart — Day Master, pattern, luck pillars

ming_qmdj_direction

QMDJ 奇門

Optimal direction + timing window for a date

ming_zwds_chart

ZWDS 紫微

Twelve-palace natal chart with 四化 transformations

ming_fengshui_flying_stars

Feng Shui 風水

Kua number + Eight Mansions directional analysis

ming_iching_cast

I Ching 易經

Hexagram via classical 納甲法 (Liu Yao)

ming_full_forecast

All four birth-data engines

Integrated five-engine forecast with confidence score


Engine requirement

This package is an MCP wrapper. It does not contain metaphysics calculation logic — it forwards tool calls to a Ming engine endpoint over HTTP. To use it, point MING_API_URL at a running engine.

Two ways to get an engine:

  1. Hosted endpoint (preferred, when available). A public Ming endpoint will be announced; once available, configure MING_API_URL to point at it and you're done.

  2. Self-host. The Ming engine itself is currently a closed-source reference implementation. If you have access to the Ming codebase, run uvicorn api.main:app --port 8000 and point this MCP at localhost:8000.

Without a reachable engine, the MCP server starts and lists tools, but tool calls return an HTTP error.

Install

Step 1 — Ensure an engine is reachable

See "Engine requirement" above.

Step 2 — Install the MCP server

npm install -g @espivc/ming-metaphysics-mcp

Step 3 — Add to claude_desktop_config.json

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json

  • Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "ming": {
      "command": "ming-metaphysics-mcp",
      "args": [],
      "env": {
        "MING_API_URL": "http://localhost:8000"
      }
    }
  }
}

Restart Claude Desktop. The Ming tools will appear in the tools list.

Verification

In Claude Desktop:

Using the ming_bazi_analyze tool, analyze the chart for someone born 1990-03-15, male, in Singapore.

You should get a full BaZi reading. If the tool errors, verify the Python engine is running at port 8000.


Endpoint Gaps

The following capabilities require FastAPI expansion before they fully function as specified. Each is flagged with a note in the tool response — no silent failures.

Gap

Affected Tool

Required FastAPI Change

Annual flying star map for a specific year

ming_fengshui_flying_stars

/consult needs a year query parameter to compute annual stars for years other than current

forecast_year parameter

ming_full_forecast

/consult computes annual analysis against the current year internally; it does not accept a target year

Full ISO casting_timestamp

ming_iching_cast

/iching-cast accepts date (YYYY-MM-DD) and hour_branch separately, not an ISO 8601 timestamp; only the date portion is forwarded

goal: "bazi"/"qmdj"/"zwds" routing

All individual tools

The spec assumed /consult would accept engine-name goals, but the real endpoint uses purpose goals (wealth/career/health/relationship/general). Individual tools route to dedicated per-engine endpoints instead (/analyze, /zwds, /qmdj, /iching-cast)

To implement year-specific flying stars or forecast_year support, add those parameters to /consult in api/main.py and update the corresponding tool handlers here.


Development

git clone <this-repo>
cd ming-metaphysics-mcp
npm install
npm run build          # compile TypeScript → dist/
npm test               # smoke tests (no engine required)

# With engine running at localhost:8000:
npx ts-node scripts/benchmark.ts --tool all --iterations 5

Environment variables

Variable

Default

Description

MING_API_URL

http://localhost:8000

Base URL of the Ming FastAPI engine

Latency targets

Tool

Target

ming_bazi_analyze

< 3s

ming_qmdj_direction

< 3s

ming_fengshui_flying_stars

< 3s

ming_zwds_chart

< 5s

ming_full_forecast

< 5s

ming_iching_cast

< 3s

If any tool exceeds 5s consistently, check the engine bottleneck and consider adding timeout: 10000 to the MCP config.


Auth

None at the wrapper level — this server is open-source and free (MIT license). Authentication, if any, is enforced by whatever endpoint MING_API_URL points at.


For a complete five-engine reading

A guided five-engine consultation (BaZi + ZWDS + QMDJ + Feng Shui + I Ching synthesised by Master Chen) is available via Ming's Telegram bot. Link will be published once the bot is in public beta.


Privacy

This MCP wrapper itself does not collect data. It forwards your tool arguments (birth date, hour, gender, question text) to whichever MING_API_URL you configured. If you point at a hosted endpoint, that endpoint receives the data — read its privacy policy. If you self-host, nothing leaves your network.

Birth data is sensitive. If you're configuring this for end users, be explicit about which endpoint receives their inputs.


Project status

This package is at version 1.0.0. The MCP protocol surface (6 tools, JSON schemas, response shapes) is stable. The underlying Ming engine evolves faster — minor numeric changes in tool responses are normal.

Contributions welcome — see CONTRIBUTING.md.


License

MIT — see LICENSE.

Available Tools

6 tools
ming_bazi_analyzeA

Compute a full BaZi (Four Pillars of Destiny 八字) chart. Returns Day Master analysis, pattern classification (格局), decade luck pillars (大运), and annual outlook. Engine verified against 子平真詮 and 淵海子平. Requires Ming engine running at MING_API_URL.

ParametersJSON Schema
NameRequiredDescriptionDefault
birth_dateYesDate of birth in YYYY-MM-DD format. Must be after 1900-01-01.
birth_hourNoHour of birth in 24-hour format (0–23). If unknown, omit — analysis will note the limitation.
birth_locationNoCity and country of birth (e.g. 'Singapore, Singapore'). Provides timezone context.
genderYesGender determines luck pillar direction (forward for males in yang years, backward for females).
questionNoOptional. Specific question to orient the reading (e.g. 'Is 2026 good for a career change?').

TDQS

A4.2/5.0
Behavior4/5

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

No annotations exist, so the description carries full burden. It discloses the compute behavior, output types, and engine verification. It does not mention destructive actions or permissions, but for a read-only computation tool, the behavioral transparency is adequate and adds value beyond the schema.

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 sentences (∼50 words), each serving a purpose: stating the main action and outputs, verifying accuracy, and noting a requirement. No redundant or extraneous information.

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?

The tool has 5 parameters (2 required) and no output schema. The description provides high-level output categories and verification context, which is helpful. However, it does not detail the output structure or error handling, so completeness is slightly lacking.

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 baseline is 3. The description does not add significant meaning beyond what the schema already provides for each parameter. It mentions the engine requirement but not parameter-specific details.

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 'Compute' with a clear resource 'BaZi chart'. It lists exact outputs and references verification against authoritative sources. Sibling tools are distinct (fengshui, forecast, iching, etc.), so differentiation is clear.

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 states it requires the Ming engine running at MING_API_URL, providing a prerequisite. It does not explicitly state when not to use or compare with siblings, but given the distinct domains of siblings, the usage context is clear and no explicit exclusions are critical.

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

ming_fengshui_flying_starsA

Compute the Kua number (卦命), directional analysis, and annual Flying Star map (年飛星) for a person. Returns Kua group, favorable/unfavorable directions per Eight Mansions (八宅法), the nine-palace annual star chart for the requested year, and a five-engine directional synthesis.

ParametersJSON Schema
NameRequiredDescriptionDefault
yearYesYear for the annual Flying Star map (年飛星). Range 1700–2100. Defaults to current year when omitted.
birth_dateYesDate of birth in YYYY-MM-DD format — used to compute the Kua number.
genderYesGender is required for Kua number calculation.
location_descriptionNoOptional. Description of the property (e.g. 'apartment, front door faces North').

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 describes the computational outputs but does not disclose behavioral traits such as accuracy assumptions, required expertise, or rate limits.

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

Conciseness4/5

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

The description is two sentences, front-loading the main purpose. It lists outputs efficiently, though a more structured format (e.g., bullet points) could improve clarity.

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?

No output schema exists, so the description must hint at return format. It lists all major outputs (Kua group, directions, chart, synthesis), which is adequate for an agent to understand the return value, though format details are missing.

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 100%, so baseline is 3. The description adds meaning by explaining the purpose of each parameter (e.g., year for annual star map, birth_date for Kua calculation), which is beyond the schema's type and format details.

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 explicitly states the tool computes Kua number, directional analysis, and annual Flying Star map, listing specific outputs (Kua group, directions, chart, synthesis). This distinguishes it from siblings like ming_bazi_analyze and ming_qmdj_direction.

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 does not provide explicit guidance on when to use this tool versus alternatives. While the listed outputs imply a feng shui context, no direct comparison or exclusion is given.

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

ming_full_forecastA

Run all four birth-data engines (BaZi + ZWDS + Feng Shui + QMDJ) for a birth profile and return an integrated Master-tier forecast. I Ching is excluded from bulk forecasts (it requires a specific question — use ming_iching_cast separately).

ParametersJSON Schema
NameRequiredDescriptionDefault
birth_dateYesDate of birth in YYYY-MM-DD format.
birth_hourNoHour of birth in 24-hour format (0–23).
birth_locationNoCity and country of birth (e.g. 'Singapore, Singapore').
genderYes
forecast_yearNoThe year to forecast for. Range 1900–2200, defaults to current year. Affects BaZi luck pillar selection and ZWDS 流年四化 annual chart.
questionNoPrimary question to orient the synthesis (e.g. 'Is 2026 the right year to start a business?').
goalNoFocus domain for the synthesis. Maps to the /consult 'goal' parameter. Defaults to 'general'.general

TDQS

A3.6/5.0
Behavior2/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 only states it 'runs' the engines, without disclosing behavioral traits like read-only status, side effects, or permissions. Minimal transparency for a complex 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?

Two sentences, front-loaded with the main purpose, and the second sentence adds a crucial usage note. No unnecessary words.

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

Completeness2/5

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

For a complex tool integrating four engines without an output schema, the description is too minimal. It does not explain what 'integrated Master-tier forecast' includes, nor any behavioral assumptions or expected output structure.

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 coverage is high (86%), so the schema already documents all parameters. The description adds context about I Ching exclusion but does not significantly enhance parameter meaning. 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 clearly states it runs four engines (BaZi, ZWDS, Feng Shui, QMDJ) and returns an integrated forecast. It distinguishes from siblings by explicitly excluding I Ching and directing to ming_iching_cast.

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?

It provides clear context for when to use (integrated forecast) and explicitly excludes I Ching, directing to a sibling. However, it lacks guidance on when to use this versus individual engine tools like ming_bazi_analyze.

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

ming_iching_castA

Cast an I Ching (易經) hexagram using the classical 納甲法 (Liu Yao method). Returns the hexagram, changing lines, transformed hexagram, and interpretation. The casting derives from the current date/time (SGT) by default.

ParametersJSON Schema
NameRequiredDescriptionDefault
questionYesThe specific question to cast for. Must be a genuine question about a real situation. Example: 'Should I accept the offer from Company X?' — not 'What will happen to the economy?'
casting_timestampNoOptional. ISO 8601 timestamp of the casting moment (e.g. '2026-04-18T14:30:00'). When provided, the date and time are both forwarded to the engine — the time component determines the hour branch (地支) used for 納甲 analysis. If omitted, uses the server's current SGT time.

TDQS

A3.8/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 burden. It mentions that casting derives from current date/time by default and that the optional timestamp affects the hour branch. However, it does not explicitly state that the operation is read-only (non-destructive) or any limitations. Adequate but not thorough.

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 only two sentences, gets straight to the point, and front-loads the main purpose. Every sentence adds essential information without redundancy.

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 2 parameters and no output schema, the description covers the return elements (hexagram, changing lines, etc.) and the default behavior with date/time. It could elaborate on the interpretation output, but overall it provides sufficient context for a divination tool.

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?

The input schema already has good descriptions (100% coverage). The description adds value by emphasizing that the question must be genuine and about a real situation, and by explaining how the timestamp's time component affects the analysis. This enhances the schema's information.

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 casts an I Ching hexagram using the classical nàjiǎ method, and specifies the output includes hexagram, changing lines, transformed hexagram, and interpretation. This is specific and distinguishes it from sibling tools like bazi or fengshui.

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

Usage Guidelines2/5

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

No explicit guidance on when to use this tool versus alternatives like ming_bazi_analyze or ming_fengshui_flying_stars. The description gives an example of question format but does not explain when I Ching is appropriate compared to other divination systems.

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

ming_qmdj_directionA

Compute a Qi Men Dun Jia (奇門遁甲) reading for a specific date. Returns the optimal direction, best timing windows, lead star, and strategic framing. Ju number computed via sxtwl solar term library for classical accuracy.

ParametersJSON Schema
NameRequiredDescriptionDefault
dateNoDate for the QMDJ reading in YYYY-MM-DD format. Defaults to today (SGT) if omitted.
hourNoOptional hour for hour-level resolution. If omitted, returns the best hour block for the day.
questionYesThe specific intention (e.g. 'Best direction for a job interview', 'Is today favourable for signing a contract?').

TDQS

A3.8/5.0
Behavior3/5

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

No annotations are provided, so the description must convey behavioral traits. It mentions the use of 'sxtwl solar term library for classical accuracy', adding technical transparency. However, it does not disclose whether the operation is idempotent, safe (read-only), or any error conditions. The description is adequate but not comprehensive.

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 sentences, no wasted words. The first sentence states purpose and outputs, the second adds technical detail. Information is front-loaded and easy to parse.

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?

No output schema exists, so the description covers the key return values (optimal direction, timing windows, lead star, strategic framing). For a complex divination tool, this provides a good overview. Minor gap: no mention of error handling or edge cases (e.g., invalid date), but overall sufficient for an agent to understand the output.

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?

Input schema has 100% description coverage, so the schema itself documents the parameters well. The description provides minimal additional meaning beyond the schema, only reiterating that omitted hour returns best hour block. Since schema coverage is high, 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 clearly states the tool computes a Qi Men Dun Jia reading for a specific date and lists specific outputs (optimal direction, best timing windows, lead star, strategic framing). The verb 'Compute' and resource 'reading' are specific, and the tool name 'direction' aligns with the main output, differentiating it from sibling tools that focus on other Ming methods.

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 implies use when a QMDJ reading is needed for a date, but lacks explicit guidance on when to use this tool versus siblings like 'ming_bazi_analyze' or 'ming_fengshui_flying_stars'. No exclusions or alternatives are mentioned, leaving the agent to infer context.

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

ming_zwds_chartB

Compute a Zi Wei Dou Shu (紫微斗數) twelve-palace natal chart. Returns palace highlights, starred positions, 四化 transformations, and synthesis for a specific question domain. Verified against 紫微斗數全書.

ParametersJSON Schema
NameRequiredDescriptionDefault
birth_dateYesDate of birth in YYYY-MM-DD format.
birth_hourYesHour of birth (0–23). Required for accurate palace placement — Zi Wei palace positions shift by birth hour.
birth_locationNoCity and country of birth. Used for timezone context.
genderYesGender affects 四化 (sihua) transformation assignments.
focus_palaceNoOptional. Focus the narrative on this palace. If omitted, returns highlights across all twelve.

TDQS

B3.1/5.0
Behavior2/5

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

Without annotations, the description should clarify behavioral traits. It states the tool 'computes' and 'returns' data, implying no side effects, but does not explicitly state read-only status, auth requirements, or limitations. The verification claim adds trust but not behavioral transparency.

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 highly concise (two sentences) and front-loaded with the core action. Every word adds value: computes, returns specific items, verification.

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?

Despite the complexity of ZWDS, the description outlines key output categories but does not specify output format or structure. Without an output schema, more detail on the return value (e.g., narrative vs. structured data) would improve completeness.

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?

All five parameters have descriptions in the input schema (100% coverage), so the description adds no extra semantic value. The tool description mentions 'specific question domain' which vaguely relates to the optional focus_palace parameter but does not elaborate.

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

Purpose4/5

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

The description clearly states the tool computes a ZWDS natal chart and lists specific outputs (palace highlights, starred positions, 四化). The mention of verification against 紫微斗數全書 adds credibility. While sibling tool names are diverse, the description does not explicitly contrast with them, but the technical specificity makes its purpose unambiguous.

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

Usage Guidelines2/5

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

The description provides no guidance on when to choose this tool over sibling tools. It does not state prerequisites, exclusions, or complementary use cases.

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

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 6 tool updatesv1.0.0
    • First observedming_bazi_analyze
    • First observedming_fengshui_flying_stars
    • First observedming_full_forecast
    • First observedming_iching_cast
    • First observedming_qmdj_direction
    • First observedming_zwds_chart

TDQS

A4/5.0

Scored across 6 tools

Disambiguation5/5

Each tool covers a distinct metaphysical system (BaZi, Feng Shui, I Ching, QMDJ, ZWDS) plus a combined forecast, with no overlapping purposes.

Naming Consistency5/5

All tools follow a consistent 'ming_system_action' pattern in snake_case, e.g., ming_bazi_analyze, ming_iching_cast.

Tool Count5/5

With 6 tools covering the main systems of Chinese metaphysics, the count is well-scoped and appropriate for the server's purpose.

Completeness5/5

The tool set covers all major Chinese metaphysical systems (BaZi, ZWDS, QMDJ, Feng Shui, I Ching) and includes a combined forecast, leaving no obvious gaps.

Maintenance

ActivityInactive
ResponsivenessNo issues

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

  • A
    license
    Not graded
    quality
    C
    maintenance
    Provides professional Chinese astrology calculations including Four Pillars, Five Elements, zodiac signs, and lunar calendar details. It allows users to perform accurate Bazi analysis with global timezone support directly within MCP-compatible clients.
    13
    10
    MIT
  • 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.
    537
    -
  • 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
    403
    108
    Apache 2.0
  • A
    license
    A
    quality
    C
    maintenance
    Provides Chinese metaphysical tools (bazi, qimen, five elements) as MCP tools for AI agents to give personalized advice on timing, compatibility, and daily energy.
    5
    80
    1
    MIT