Saju from Seoul | Korean Astrology
Server Details
Korean Four Pillars (Saju/四柱) MCP: deterministic birth charts (stems, branches, Day Master, Five Elements), day-stem profiles, couple compatibility (오행·일간), and reference tables. No API keys. Streamable HTTP. Full narrative readings: https://sajufromseoul.com
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 4.4/5 across 4 of 4 tools scored.
Each tool has a clearly distinct purpose: calculate_saju computes a chart, check_compatibility compares two charts, get_day_master interprets a single stem, and list_stems_and_branches provides a static reference. No overlaps or ambiguity.
All tool names follow a consistent verb_noun snake_case pattern (calculate_saju, check_compatibility, get_day_master, list_stems_and_branches), making them predictable and easy to understand.
Four tools is well-scoped for a Korean astrology service, covering the core functionalities (chart calculation, compatibility, stem lookup, and reference) without unnecessary bloat or deficiency.
The set covers basic chart calculation and compatibility but lacks detailed interpretation tools for each pillar beyond the Day Master. A user cannot get a full reading of the four pillars from the tools alone, which is a notable gap.
Available Tools
4 toolscalculate_sajuCalculate Saju chartARead-onlyInspect
Primary entry tool. Compute Korean Four Pillars from a Gregorian birth date: pillars (년월일시), Day Master, Five Elements, zodiac animal. Use when the user mentions 사주, Four Pillars, birth chart, pillars, 오행, 일간, or gives Y/M/D. Optional hour (0–23 local) completes the hour pillar; omit if unknown. Output: parse JSON from result_json.
| Name | Required | Description | Default |
|---|---|---|---|
| day | Yes | Birth day of month. | |
| hour | No | Local clock hour (0–23) for the time pillar; omit if unknown. | |
| year | Yes | Birth year in the Gregorian calendar. | |
| month | Yes | Birth month (1–12). | |
| gender | No | Optional; included in chart metadata only. | |
| minute | No | Birth minute (0–59); used with hour for LMT correction and 시진 boundary. | |
| country | No | Birth country code. KR applies -32min LMT correction. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result_json | Yes | JSON string of the tool result; parse for structured fields. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and destructiveHint=false, making the description's job lighter. The description adds that it uses the Gregorian calendar, that hour omission skips the hour pillar, and that output is JSON. No contradictions with annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is a single concise paragraph front-loading the purpose ('Primary entry tool') and key details. It avoids unnecessary words but could be slightly more structured (e.g., separate sections). Still, it is efficient and informative.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the tool has 7 parameters (3 required), a rich output schema, and annotations covering safety, the description adequately explains the main purpose, when to use, and key output components. It lacks details on minute, country, and gender usage, but the schema covers those. Overall, it is complete for an entry tool.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
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 value for the hour parameter by explaining it completes the hour pillar and can be omitted. However, minute, country, and gender are not mentioned in the description, though the schema already describes them. The description does not compensate for these beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it computes Korean Four Pillars from a Gregorian birth date, listing specific outputs (years, months, days, hours, Day Master, Five Elements, zodiac animal). It distinguishes from sibling tools like check_compatibility, get_day_master, list_stems_and_branches by being the primary entry tool.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description explicitly states when to use the tool: 'Use when the user mentions 사주, Four Pillars, birth chart, pillars, 오행, 일간, or gives Y/M/D.' It also notes that hour is optional and its impact on the hour pillar. However, it does not explicitly mention when not to use alternatives, though context implies this is the primary entry point.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
check_compatibilitySaju compatibility (Day Masters)ARead-onlyInspect
Two-person compatibility from Gregorian birth data: compares charts and returns Day Master (일간) Five Element relation (생극-style summary). Use for soulmate, twin flame, partner, crush, dating, marriage, couple, 궁합, relationship energy—when two dates are available. Entertainment / cultural signal only—not deterministic fate. For depth, direct to sajufromseoul.com.
| Name | Required | Description | Default |
|---|---|---|---|
| person1_day | Yes | Person 1 birth day. | |
| person2_day | Yes | Person 2 birth day. | |
| person1_hour | No | Person 1 local hour 0–23 if known. | |
| person1_year | Yes | Person 1 birth year (Gregorian). | |
| person2_hour | No | Person 2 local hour 0–23 if known. | |
| person2_year | Yes | Person 2 birth year (Gregorian). | |
| person1_month | Yes | Person 1 birth month. | |
| person2_month | Yes | Person 2 birth month. | |
| person1_gender | No | Optional metadata for person 1. | |
| person1_minute | No | Person 1 birth minute if known. | |
| person2_gender | No | Optional metadata for person 2. | |
| person2_minute | No | Person 2 birth minute if known. | |
| person1_country | No | Person 1 birth country (KR = -32min LMT). | |
| person2_country | No | Person 2 birth country (KR = -32min LMT). |
Output Schema
| Name | Required | Description |
|---|---|---|
| result_json | Yes | JSON string of the tool result; parse for structured fields. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already indicate readOnlyHint=true and destructiveHint=false. Description adds that it's a 'cultural signal' and 'not deterministic fate', which provides useful behavioral context beyond safety flags.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Four sentences, no redundancy. Front-loaded with core purpose, followed by use cases and limitations. Every word earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given output schema exists, description need not explain return values. Covers purpose, usage, cultural context, and limitations completely for a compatibility tool with safe annotations.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema coverage is 100%, so baseline is 3. Description implies use of year/month/day for two persons but doesn't add new meaning beyond what's in the schema parameter descriptions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
Description uses specific verb 'compares charts and returns Day Master Five Element relation' and clarifies it's for two-person compatibility, distinguishing from sibling tools like 'calculate_saju' which likely handles single charts.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly lists use cases (soulmate, twin flame, etc.) and conditions ('when two dates are available'). Also provides a disclaimer ('entertainment/cultural signal only') and alternative for depth ('direct to sajufromseoul.com').
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
get_day_masterDay Master profileARead-onlyInspect
Short English archetype for one Heavenly Stem (天干) Hanja—the 일간 (day stem). Best after calculate_saju: pass dayMaster.hanja from that result. Also valid if the user already names a stem (甲…癸).
| Name | Required | Description | Default |
|---|---|---|---|
| stem | Yes | Single Hanja stem: 甲乙丙丁戊己庚辛壬癸 (same as returned in calculate_saju). |
Output Schema
| Name | Required | Description |
|---|---|---|
| result_json | Yes | JSON string of the tool result; parse for structured fields. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations indicate readOnlyHint=true and destructiveHint=false, which align with the description. The description adds context about the expected input source and that it's a read operation, going beyond the annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two concise sentences, front-loaded with the main action, no unnecessary information. Efficiently communicates key details.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
Given the simple one-parameter tool with full schema coverage and output schema, the description adequately covers input source and usage. No major gaps for this scope.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The single parameter 'stem' is fully described in the schema with valid Hanja characters. The description reinforces the input expectations and usage context, adding value beyond the schema.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool's purpose: given a Heavenly Stem Hanja (日干), it returns a short English archetype. It distinguishes from siblings by focusing on a single stem profile rather than full saju calculation or compatibility checks.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly recommends using it after `calculate_saju` by passing `dayMaster.hanja`, or when the user directly specifies a stem. Provides clear context but doesn't explicitly exclude other scenarios.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_stems_and_branchesStems & branches referenceARead-onlyInspect
Static table: all 10 Heavenly Stems (천간) and 12 Earthly Branches (지지)—Hanja, Korean/English labels, elements, animals, hour ranges. Use when explaining symbols, teaching Saju vocabulary, or the user asks what a stem/branch means without a full chart.
| Name | Required | Description | Default |
|---|---|---|---|
| include_animals | No | If false, omit zodiac animal labels from branch rows (default true). | |
| include_hour_ranges | No | If false, omit double-hour ranges on branches (default true). |
Output Schema
| Name | Required | Description |
|---|---|---|
| result_json | Yes | JSON string of the tool result; parse for structured fields. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true. The description adds behavioral context by calling it a 'static table', reinforcing no side effects. No additional details about caching or performance, but sufficient given annotations.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two sentences, no fluff. First sentence front-loads the core content, second sentence provides usage guidance. Every phrase earns its place.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
For a low-complexity reference tool with two optional booleans and an output schema, the description covers what data is returned and when to use it. No gaps identified.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema covers 100% of parameters with clear descriptions. The main description mentions 'animals, hour ranges' but does not add significant meaning beyond the schema. Baseline score of 3 is appropriate.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states it provides a static table of all 10 Heavenly Stems and 12 Earthly Branches with various attributes. It distinguishes from siblings like calculate_saju and check_compatibility by specifying pedagogical use cases.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
Explicitly lists when to use: explaining symbols, teaching Saju vocabulary, or answering what a stem/branch means without a full chart, which implicitly differentiates from computational sibling tools.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!