everything vs oatpp-mcp
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | oatpp-mcp by oatpp | |
|---|---|---|
| Stars | ★ 85,748 | ★ 49 |
| 30d uses | — | — |
| Score | 77 | 36 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsOps & Infra |
| Language | TypeScript | C++ |
| Last commit | this month | 17 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
oatpp-mcp · Summary
C++ MCP server implementation for Oat++ framework with automated API tool generation.
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
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
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-everythingoatpp-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": []
}
}
}