streamable-httpupdated 17d ago
A remote MCP service that calculates your Destiny Weight and returns an English destiny reading β based on the ancient Chinese method attributed to the Tang Dynasty astronomer Yuan Tiangang, written for a Western audience.
What can you do with FateMCP Destiny Weight?
FateMCP Destiny Weight
A remote MCP service that calculates your Destiny Weight and returns an English destiny reading β based on the ancient Chinese method attributed to the Tang Dynasty astronomer Yuan Tiangang, written for a Western audience.
What is it?
It is an ancient Chinese method of fortune telling, attributed to the Tang Dynasty astronomer Yuan Tiangang. Unlike Western astrology which looks at planetary positions, this method calculates your "destiny weight" based on your exact birth date and time, measured in traditional Chinese units β liang and qian.
How does it work?
In this system, every year, month, day, and hour of birth is assigned a specific weight. You add these four values together to get your total Destiny Weight. This total corresponds to a specific verse that describes your life's trajectory, including career, wealth, and relationships. The algorithm runs entirely on the server β no local installation or execution required.
Why is it interesting?
Think of it as a "Life Horoscope" but based on numerical weight rather than star signs. A heavier destiny weight generally suggests a life with more stability, wealth, or social status, while a lighter weight might indicate a life requiring more personal effort and resilience. However, tradition also holds that lighter weights can indicate a self-made, resilient destiny. It's often used for entertainment or self-reflection, similar to reading daily horoscopes.
Quick Start
This is a remote MCP service. The algorithm runs entirely on the server β you install nothing locally and the algorithm never leaves the server. Just point your MCP client at the endpoint:
https://mcp.fatemcp.com/destiny-weight
MCP Agent configuration
Add to your MCP config:
{
"mcpServers": {
"fatemcp-destiny-weight": {
"type": "streamableHttp",
"url": "https://mcp.fatemcp.com/destiny-weight"
}
}
}
For clients without native Streamable HTTP support (e.g., older Claude Desktop versions):
{
"mcpServers": {
"fatemcp-destiny-weight": {
"command": "npx",
"args": ["-y", "mcp-remote", "https://mcp.fatemcp.com/destiny-weight"]
}
}
}
Required information
To calculate a reading, ask the user for their Gregorian birth date and time:
| Field | Description |
|---|---|
| Birth year | Gregorian year |
| Birth month | 1-12 |
| Birth day | 1-31 |
| Birth hour | 0-23 (24h) |
| Gender | male / female (the same weight yields different readings for each) |
The API accepts a Gregorian date; the server converts it to the lunar (Chinese) calendar automatically. The hour is required β it determines the birth-hour weight. Note: Births between 23:00 and 00:00 are traditionally counted as the next lunar day; the server handles this. For leap months: the first half counts as the current month, the second half as the next; the server handles this too.
Tool: calculate_destiny_weight
Parameters
| Parameter | Type | Required | Description |
|---|---|---|---|
year |
integer | yes | Birth year (Gregorian) |
month |
integer | yes | Birth month (1-12) |
day |
integer | yes | Birth day (1-31) |
hour |
integer | yes | Birth hour (0-23) |
gender |
string | yes | male / female (the reading differs) |
Output
Returns the English destiny reading as text, e.g.:
Destiny Weight: 3.7 (reference range: 2.1β7.2)
A life of financial tides. Money comes, money goesβnever quite settling into a permanent
stack. You are capable and upright, unwilling to cut corners or exploit others...
The gift here is integrity. People with this weight sleep soundly because their
conscience is clean...
Privacy
- All calculations run on the server
- Only birth information is sent; nothing is stored or logged
License
MIT
Related projects
- fatemcp/daymaster β Day Pillar reading
Install
Add FateMCP Destiny Weight to your client. Pick the one you use.
claude mcp add --transport http fatemcp-destiny-weight https://mcp.fatemcp.com/destiny-weightcodex mcp add fatemcp-destiny-weight --url https://mcp.fatemcp.com/destiny-weight{
"mcpServers": {
"fatemcp-destiny-weight": {
"url": "https://mcp.fatemcp.com/destiny-weight"
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
{
"servers": {
"fatemcp-destiny-weight": {
"type": "http",
"url": "https://mcp.fatemcp.com/destiny-weight"
}
}
}Add to `.vscode/mcp.json` in your workspace.
{
"mcpServers": {
"fatemcp-destiny-weight": {
"url": "https://mcp.fatemcp.com/destiny-weight"
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"fatemcp-destiny-weight": {
"serverUrl": "https://mcp.fatemcp.com/destiny-weight"
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
Score
39 / 100
Incomplete
- Documentation25/25
- Maintenance19/25
- Trust6/20
- Capability0/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 9 days ago
- Has a release history
- Repository is not archived
- No licence detected
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 6 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint β no local install
Version history
| Versions | Published |
|---|---|
| 1.0.0Latest | Aug 22, 2026 |