fortuneteller vs everything
Side-by-side comparison to help you pick between these two MCP servers.
fortuneteller by hjsh200219 | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 34 | ★ 85,748 |
| 30d uses | — | — |
| Score | 44 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsProductivityOther | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 1 mo ago | this month |
fortuneteller · Summary
An MCP server for Korean traditional Saju fortune-telling with comprehensive analysis tools.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
fortuneteller · Use cases
- Personal fortune analysis using Korean Saju methodology
- Compatibility checking between two people
- Daily, monthly, yearly fortune predictions
- Conversion between lunar and solar calendars
everything · Use cases
- Testing MCP client implementations against all protocol features
- Learning MCP protocol capabilities through a reference server
- Validating client compatibility with different transport methods
fortuneteller · Install
Installation
**Option 1: Automatic Installation Script (Recommended)**
curl -fsSL https://raw.githubusercontent.com/hjsh200219/fortuneteller/main/install.sh | bash**Option 2: Manual Installation**
npm install -g @hoshin/saju-mcp-server**Option 3: Using npx (No Installation)**
npx @hoshin/saju-mcp-serverClaude Desktop Configuration
Add to ~/Library/Application Support/Claude/claude_desktop_config.json:
{
"mcpServers": {
"saju": {
"command": "npx",
"args": ["-y", "@hoshin/saju-mcp-server"]
}
}
}everything · Install
NPX (recommended)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}On Windows, use cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}Global install
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything