fortuneteller vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
fortuneteller by hjsh200219 | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 34 | ★ 85,748 |
| 30d uses | — | — |
| Score | 44 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsProductivityOther | File SystemDeveloper ToolsProductivity |
| 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.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
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
filesystem · Use cases
- Enable AI models to read and write project files during development
- Allow Claude or other MCP clients to browse and analyze codebases
- Provide secure sandboxed access to specific directories for content generation
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"]
}
}
}filesystem · Install
Installation
Using NPX
{
"mcpServers": {
"filesystem": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-filesystem",
"/path/to/allowed/directory"
]
}
}
}Using Docker
{
"mcpServers": {
"filesystem": {
"command": "docker",
"args": [
"run",
"-i",
"--rm",
"--mount", "type=bind,src=/path/to/allowed/dir,dst=/projects/allowed/dir",
"mcp/filesystem",
"/projects"
]
}
}
}VS Code Extension
Click the installation buttons in the README to install directly in VS Code.