korean-crypto-mcp vs memory
Side-by-side comparison to help you pick between these two MCP servers.
korean-crypto-mcp by koreafintech | memory by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 0 | ★ 85,748 |
| 30d uses | — | — |
| Score | 36 | 77 |
| Official | — | ✓ |
| Categories | FinanceAI / LLM ToolsOther | Knowledge GraphAI / LLM ToolsProductivity |
| Language | Python | TypeScript |
| Last commit | 3 mo ago | this month |
korean-crypto-mcp · Summary
MCP server providing real-time Korean cryptocurrency market data, including kimchi premium tracking and exchange comparisons.
memory · Summary
An MCP server implementing persistent memory using a local knowledge graph for AI models to remember user information across chats.
korean-crypto-mcp · Use cases
- Cryptocurrency traders monitoring kimchi premium for arbitrage opportunities
- AI agents needing real-time Korean crypto market data for analysis
- Financial analysts comparing exchange rates across different markets
- Automated trading systems that need to track price disparities
memory · Use cases
- Personalizing AI assistant interactions by remembering user preferences, history, and relationships
- Building context-aware chat applications that maintain conversation history
- Creating knowledge bases that persist across AI model sessions
korean-crypto-mcp · Install
Installation
Via Smithery:
smithery install koreafintech/korean-crypto-mcpLive server available at:
https://web-production-fa47d.up.railway.appClaude Desktop Configuration
Add to your Claude Desktop config.json:
{
"mcpServers": {
"korean-crypto": {
"command": "npx",
"args": ["korean-crypto-mcp"],
"env": {}
}
}
}memory · Install
Installation
Claude Desktop
Add to your claude_desktop_config.json:
{
"mcpServers": {
"memory": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-memory"
]
}
}
}VS Code
Use one-click installation buttons or manually configure in .vscode/mcp.json:
{
"servers": {
"memory": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-memory"
]
}
}
}Docker
{
"mcpServers": {
"memory": {
"command": "docker",
"args": ["run", "-i", "-v", "claude-memory:/app/dist", "--rm", "mcp/memory"]
}
}
}