MCP Catalogs
Home

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
Score7736
Official
Categories
Developer ToolsAI / LLM ToolsOther
Developer ToolsAI / LLM ToolsOps & Infra
LanguageTypeScriptC++
Last committhis month17 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-everything

oatpp-mcp · Install

Install oatpp-mcp

Prerequisites

  • Install the main [oatpp](https://github.com/oatpp/oatpp) module

Build Steps

  1. Clone this repository
  2. 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": []
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.