filesystem vs oatpp-mcp
Side-by-side comparison to help you pick between these two MCP servers.
filesystem by modelcontextprotocol | oatpp-mcp by oatpp | |
|---|---|---|
| Stars | ★ 85,748 | ★ 49 |
| 30d uses | — | — |
| Score | 77 | 36 |
| Official | ✓ | — |
| Categories | File SystemDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOps & Infra |
| Language | TypeScript | C++ |
| Last commit | this month | 17 mo ago |
filesystem · Summary
A feature-rich MCP server for filesystem operations with dynamic directory access control.
oatpp-mcp · Summary
C++ MCP server implementation for Oat++ framework with automated API tool generation.
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
oatpp-mcp · Use cases
- Enabling LLMs to query and interact with existing Oat++ REST APIs
- Building C++ applications that can leverage LLM capabilities through MCP integration
- Creating MCP servers for code review or logging systems using Oat++ framework
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.
oatpp-mcp · Install
Install oatpp-mcp
Prerequisites
- Install the main [oatpp](https://github.com/oatpp/oatpp) module
Build Steps
- Clone this repository
- In the repository root, run:
``bash mkdir build && cd build cmake .. make install ``
Claude Desktop Configuration
To use with Claude Desktop, add to claude_desktop_config.json:
{
"mcpServers": {
"oatpp-mcp": {
"command": "path/to/your/oatpp-mcp-executable",
"args": []
}
}
}