npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

somyung-saju-mcp

v1.0.0

Published

MCP server for Korean Saju (Four Pillars of Destiny) child temperament analysis

Readme

@somyung/mcp-server

MCP (Model Context Protocol) server for Korean Saju (사주팔자) child temperament analysis. Lets AI assistants like Claude and ChatGPT calculate Four Pillars of Destiny and provide personalized child personality insights.

What It Does

This server calculates the Four Pillars and Five Element balance from a child's birth data, then returns structured temperament data that the AI host interprets naturally. No API keys needed — all calculation is local.

Tools

| Tool | Description | |------|-------------| | analyze_child_temperament | Calculate Four Pillars + element balance + personality traits + learning style + parent tips | | compare_siblings | Compare two children's temperaments, compatibility, and parenting approaches | | explain_five_elements | Detailed explanation of any element (wood/fire/earth/metal/water) |

Install

npm install -g @somyung/mcp-server

Or clone and build:

git clone https://github.com/somyung/mcp-server.git
cd mcp-server
npm install
npm run build

Configure with Claude Desktop

Add to your Claude Desktop config (~/Library/Application Support/Claude/claude_desktop_config.json on macOS):

If installed globally via npm:

{
  "mcpServers": {
    "somyung-saju": {
      "command": "somyung-mcp"
    }
  }
}

If cloned locally:

{
  "mcpServers": {
    "somyung-saju": {
      "command": "node",
      "args": ["/absolute/path/to/mcp-server/dist/index.js"]
    }
  }
}

Using npx (no install):

{
  "mcpServers": {
    "somyung-saju": {
      "command": "npx",
      "args": ["-y", "@somyung/mcp-server"]
    }
  }
}

Configure with Claude Code

claude mcp add somyung-saju node /absolute/path/to/mcp-server/dist/index.js

Usage Examples

Once configured, ask your AI assistant:

  • "My daughter was born on 2020-05-15 at 14:30. What's her temperament?"
  • "Compare my two kids: son born 2018-03-20 10:00 and daughter born 2021-07-08 15:30"
  • "What does the Fire element mean for a child?"
  • "My son's birth date is 2019-11-22 (don't know the time). What's his personality like?"

The AI will automatically call the appropriate tool and interpret the results.

How It Works

  1. Birth data is parsed (date, optional time, gender)
  2. Four Pillars (년주/월주/일주/시주) are calculated using solar terms (절기) for accurate month pillars
  3. Five Element balance is computed from all 8 characters (4 stems + 4 branches)
  4. Temperament profile is assembled: dominant/weakest elements, personality traits, learning style, social style, emotional patterns, and parenting tips
  5. The AI host receives structured data and provides a natural, conversational interpretation

If birth time is not provided, noon (12:00) is used as an estimate, and the response notes this limitation.

Element Quick Reference

| Element | Korean | Traits | Learning Style | |---------|--------|--------|---------------| | Wood (목/木) | Creative, independent, growth-oriented | Self-paced, autonomous | | Fire (화/火) | Passionate, expressive, warm | Short bursts, active, social | | Earth (토/土) | Stable, nurturing, reliable | Routine, familiar environment | | Metal (금/金) | Precise, principled, focused | Structured, step-by-step | | Water (수/水) | Intuitive, sensitive, adaptable | Quiet, flexible timing |

Publishing to Smithery

To register on the Smithery MCP Registry:

  1. Create smithery.yaml in the project root:
name: somyung-saju
description: Korean Saju (Four Pillars) child temperament analysis
icon: yin_yang
startCommand:
  type: stdio
  configSchema:
    type: object
    properties: {}
  commandFunction: |-
    (config) => ({
      command: 'node',
      args: ['dist/index.js']
    })
  1. Push to a public GitHub repository
  2. Go to smithery.ai/new and submit your repo URL

Development

npm install
npm run dev      # Run with tsx (hot reload)
npm run build    # Compile TypeScript
npm start        # Run compiled version

License

MIT