mingli-mcp: Instructions file for Claude Code

CLAUDE.md

mingli-mcp CLAUDE.md is an instructions file for Claude Code from spyfree/mingli-mcp. It costs 3,140 tokens per session, scanned C, original, MIT.

Repository instructions for Mingli, a Python MCP server for Chinese astrology chart calculations. They describe how to set up its virtual environment, run it through standard input or HTTP, and execute its tests and code-quality checks.

In plain words
What is it for?
Use them when developing or validating the server, including its BaZi and Zi Wei chart tests, packaging, and release checks.
Why use it?
They give the commands needed to install, run, test, format, lint, and type-check the project.

Instructions file for Claude Code

Written for Claude Code: the file is CLAUDE.md. Also seen: mentions CLAUDE.md; mentions Claude Code.

This is spyfree/mingli-mcp's own configuration. It tells Claude Code how to work on mingli-mcp itself, so it is not a mod to install elsewhere. Copy it as a starting point and replace the rules that are about this project. Everything mingli-mcp configures →

Reuse

Borrowing it

Nothing to install: this file belongs to spyfree/mingli-mcp. Take a copy, put it at the same path in your own repository, and replace the rules that are about this project with yours.

Copy the file
curl -O https://raw.githubusercontent.com/spyfree/mingli-mcp/main/CLAUDE.md
Clone the repo
git clone --depth 1 https://github.com/spyfree/mingli-mcp

Made for: Claude Code.

Wrote this? Show the measurements

A badge with what this costs and how it scanned, read live from this page, so it follows the numbers instead of freezing them. Markdown for a README, HTML for a documentation site or a project page.

agentmods badge for mingli-mcp CLAUDE.md

README.md
[![agentmods](https://agentmods.dev/badge/instructions/spyfree/mingli-mcp/claude-md.svg)](https://agentmods.dev/instructions/spyfree/mingli-mcp/claude-md)
Your own site
<a href="https://agentmods.dev/instructions/spyfree/mingli-mcp/claude-md"><img src="https://agentmods.dev/badge/instructions/spyfree/mingli-mcp/claude-md.svg" alt="Measured on agentmods" height="20"></a>
Per session 3,140 This file is loaded in full into every session.
When invoked 3,140 The same file — it is already loaded in full.
Security scan C 1 finding. A grade says what 26 rules found in the file — not that it is safe.
Origin original No closer match found in the catalogue.
Token cost

What it costs to keep this loaded

Counted locally with the o200k_base tokenizer, which is exact for GPT models; Claude uses its own tokenizer and its counts differ. Treat this as one consistent yardstick across the catalogue rather than a bill. Prices are per million input tokens.

ModelPer sessionOnce invoked
Fable 5.1 $0.03140 $0.03140
Opus 5 $0.01570 $0.01570
Sonnet 5 $0.00628 $0.00628
Haiku 4.5 $0.00314 $0.00314

Measured 8d ago against content hash 0093b54b191d, method: parsed. Prices are Anthropic first-party input rates as of 2026-09-08, from the pricing page.

Security

Grade C, and why

mingli-mcp CLAUDE.md scanned grade C with 1 finding against 26 rules in 11 categories — prompt injection, anti-refusal, data exfiltration, privilege escalation, supply chain, agent snooping, system-prompt leakage, SSRF and excessive agency — measured 8d ago.

A static scan of the body, not an audit. Every finding is printed with the line that produced it so you can judge whether it matters here. A mod is markdown that instructs an agent; that is exactly why what it instructs is worth reading.

Recursive force deletehighDestructive command

rm -rf with a variable or a broad path is one typo away from removing the wrong tree.

rm -rf build/ dist/ *.egg-info
CLAUDE.md · 369 lines

How it starts

The opening of the file, as written. The whole thing — 369 lines — stays where its author put it; the contents beside it link to each section on GitHub.

CLAUDE.md

This file provides guidance to Claude Code (claude.ai/code) when working with code in this repository.

Quick Start

# Activate virtual environment
source venv/bin/activate

# Install development dependencies
pip install -e ".[dev]"

# Run the server (stdio mode for MCP)
python -m mingli_mcp

# Run HTTP transport (for Docker/server deployments)
TRANSPORT_TYPE=http HTTP_PORT=8080 python -m mingli_mcp

Common Development Commands

Testing

# Run all tests
pytest

# Run with verbose output
pytest -v

# Test with coverage
pytest --cov=. --cov-report=term-missing --cov-report=html
open htmlcov/index.html

# Run specific test file
pytest tests/test_bazi.py

# Run specific test function
pytest tests/test_ziwei.py::test_ziwei_chart

Code Quality

# Format code
black .

# Check import sorting
isort .

# Lint with flake8
flake8 .

# Type check with mypy
mypy .

# Run all quality checks at once
black --check . && isort --check-only . && flake8 . && pytest

Building and Publishing

# Clean build artifacts
rm -rf build/ dist/ *.egg-info

# Build package
python -m build

# Check package
twine check dist/*

# Publish to PyPI
twine upload dist/*

Development Workflow

# Debug with logging
LOG_LEVEL=DEBUG python -m mingli_mcp

Code Architecture

This is a Model Context Protocol (MCP) server for Chinese fortune telling systems with a modular, plugin-based architecture.

Core Structure

ziwei_mcp/
├── pyproject.toml                 # Project metadata and dependencies
├── mingli_mcp/                    # The installable package (single top-level namespace)
│   ├── __init__.py               # Package version (__version__)
│   ├── cli.py                    # Console entry point (mingli-mcp / python -m mingli_mcp)
│   ├── config.py                 # Configuration management
│   │
│   ├── mcp_server/               # MCP protocol implementation
│   │   ├── server.py             # MingliMCPServer: request routing
│   │   ├── protocol.py           # ProtocolHandler: initialize/prompts/resources, version negotiation
│   │   ├── resources.py          # Resource contents
│   │   └── tools/                # Tool definitions and handlers
│   │
│   ├── core/                      # Abstract base layer
│   │   ├── base_system.py        # BaseFortuneSystem abstract class
│   │   ├── birth_info.py         # BirthInfo data model
│   │   └── chart_result.py       # ChartResult data model
│   │
│   ├── systems/                   # Fortune system implementations
│   │   ├── __init__.py           # System registry
│   │   ├── ziwei/                # Ziwei Doushu system (iztro-py based)
│   │   ├── bazi/                 # BaZi (Four Pillars) system
│   │   └── astrology/            # Western astrology (stub)
│   │
│   ├── transports/                # Communication transports
│   │   ├── stdio_transport.py    # stdio transport (default for MCP)
│   │   └── http_transport.py     # Streamable HTTP transport (stateless JSON mode)
│   │
│   ├── utils/                     # Validators, formatters, rate limiter, etc.
│   └── prompts/                   # Prompt templates (shipped with the package)
│
└── tests/                         # Unit tests

Read the full file on GitHub · 369 lines

Changes

What this file has done since we first saw it

Hashed on every crawl. A supply-chain change to an agent config is a question of when, not whether, so the history is kept rather than the latest state alone.

  1. 8d ago First seen · 369 lines · 3,140 tokens per session scan C 0093b54b191d

Subscribe to this mod's changes

mingli-mcp CLAUDE.md is an instructions file published in the GitHub repository spyfree/mingli-mcp (6 stars, last pushed 27d ago), licensed MIT. It adds 3,140 tokens to every session, about $0.0157 per session on Opus 5. A static security scan graded it C with 1 finding (recursive force delete). No closer match exists in the catalogue, so it is treated as the original; first seen 2026-08-31.

Related

Other instructions, from other repositories

next.js AGENTS.md

AGENTS.md instructions for vercel/next.js, covering next.js development guide, codebase structure, monorepo overview, core package: packages/next and other important packages.

vercel/next.js · 7,296 tokens

codex AGENTS.md

AGENTS.md instructions for openai/codex, covering rust/codex-rs, the codex-core crate, code review rules, crate api surface and model visible context.

openai/codex · 5,153 tokens

vscode buildNext.instructions.md

Working notes and architecture documentation for the new esbuild-based build system in build/next. Use when making changes to the new build pipeline (transpile/bundle commands, NLS plugin, source-map handling, resource copying, or self-hosting watch tasks).

microsoft/vscode · 6,785 tokens

vscode oss-third-party-notices.instructions.md

Instructions for microsoft/vscode, covering vs code oss third-party-notices pipeline, architecture, pipeline flow in ci, applying the notice (cutover) and fallback chain (never fail the build).

microsoft/vscode · 5,001 tokens

langchain AGENTS.md

AGENTS.md instructions for langchain-ai/langchain, covering global development guidelines for the langchain monorepo, corridor security analysis, project architecture and context, monorepo structure and development tools & commands.

langchain-ai/langchain · 4,469 tokens

spec-kit AGENTS.md

AGENTS.md instructions for github/spec-kit, covering agents.md, about spec kit and specify, quickstart — add a new integration in 5 steps, integration architecture and integrationmanifest — file tracking.

github/spec-kit · 7,104 tokens