korean-dart-mcp vs everything
并排对比,帮你在这两个 MCP server 之间做选择。
korean-dart-mcp by chrisryugj | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 36 | ★ 85,748 |
| 30天用量 | — | — |
| 综合分 | 44 | 77 |
| 官方 | — | ✓ |
| 分类 | 金融数据AI / LLM 工具开发者工具 | 开发者工具AI / LLM 工具其它 |
| 实现语言 | TypeScript | TypeScript |
| 最近提交 | 1 个月前 | 本月 |
korean-dart-mcp · 概述
韩国金融披露API的Node.js MCP服务器,将83个端点压缩为15个工具。
everything · 概述
官方 MCP 测试服务器,展示协议全部功能,供客户端开发者使用。
korean-dart-mcp · 使用场景
- 分析内部人交易信号,检测公司高管是否在购买自家股票
- 使用巴菲特质量清单比较多家公司的财务指标
- 提取和总结复杂的财务报告内容(PDF/HWP附件)
- 使用预设参数搜索特定类型的公司披露
everything · 使用场景
- 测试 MCP 客户端实现是否支持所有协议功能
- 通过参考服务器学习 MCP 协议能力
- 验证客户端对不同传输方式的兼容性
korean-dart-mcp · 安装
# 安装(macOS/Linux/Windows)
npx -y korean-dart-mcp setup这将启动一个交互式向导,它:
- 提示输入您的OpenDART API密钥(在https://opendart.fss.or.kr/免费获取)
- 检测您的AI客户端(Claude Desktop、Cursor等)
- 自动配置客户端
Claude Desktop配置示例:
{
"mcpServers": {
"korean-dart": {
"command": "npx",
"args": ["-y", "korean-dart-mcp"],
"env": {
"OPENDART_API_KEY": "your-api-key-here"
}
}
}
}everything · 安装
NPX(推荐)
{
"mcpServers": {
"everything": {
"command": "npx",
"args": ["-y", "@modelcontextprotocol/server-everything"]
}
}
}Windows 用户请使用 cmd /c:
{
"mcpServers": {
"everything": {
"command": "cmd",
"args": ["/c", "npx", "-y", "@modelcontextprotocol/server-everything"]
}
}
}Docker
{
"mcpServers": {
"everything": {
"command": "docker",
"args": ["run", "-i", "--rm", "mcp/everything"]
}
}
}全局安装
npm install -g @modelcontextprotocol/server-everything@latest
npx @modelcontextprotocol/server-everything