korean-dart-mcp vs filesystem
Side-by-side comparison to help you pick between these two MCP servers.
korean-dart-mcp by chrisryugj | filesystem by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 36 | ★ 85,748 |
| 30d uses | — | — |
| Score | 44 | 77 |
| Official | — | ✓ |
| Categories | FinanceAI / LLM ToolsDeveloper Tools | File SystemDeveloper ToolsProductivity |
| Language | TypeScript | TypeScript |
| Last commit | 1 mo ago | this month |
korean-dart-mcp · Summary
Node.js MCP server for Korean financial disclosure APIs with 83 endpoints compressed to 15 tools.
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
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
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
korean-dart-mcp · Install
# Installation (macOS/Linux/Windows)
npx -y korean-dart-mcp setupThis will launch an interactive wizard that:
- Prompts for your OpenDART API key (free at https://opendart.fss.or.kr/)
- Detects your AI client (Claude Desktop, Cursor, etc.)
- 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"
}
}
}
}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.