MCP Catalogs
Home

korean-dart-mcp vs everything

Side-by-side comparison to help you pick between these two MCP servers.

korean-dart-mcp
by chrisryugj
everything
by modelcontextprotocol
Stars★ 36★ 85,748
30d uses
Score4477
Official
Categories
FinanceAI / LLM ToolsDeveloper Tools
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit1 mo agothis month

korean-dart-mcp · Summary

Node.js MCP server for Korean financial disclosure APIs with 83 endpoints compressed to 15 tools.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

korean-dart-mcp · Use cases

  • Analyze insider trading signals to detect if company executives are buying their own stock
  • Compare financial metrics across multiple companies using Buffett-quality checklists
  • Extract and summarize content from complex financial reports (PDF/HWP attachments)
  • Search for specific types of corporate disclosures with preset parameters

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

korean-dart-mcp · Install

# Installation (macOS/Linux/Windows)
npx -y korean-dart-mcp setup

This will launch an interactive wizard that:

  1. Prompts for your OpenDART API key (free at https://opendart.fss.or.kr/)
  2. Detects your AI client (Claude Desktop, Cursor, etc.)
  3. Automatically configures the client

Claude Desktop configuration example:

{
  "mcpServers": {
    "korean-dart": {
      "command": "npx",
      "args": ["-y", "korean-dart-mcp"],
      "env": {
        "OPENDART_API_KEY": "your-api-key-here"
      }
    }
  }
}

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
Comparison generated from public README + GitHub signals. Last updated automatically.