everything vs openfoam-mcp-server
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | openfoam-mcp-server by webworn | |
|---|---|---|
| Stars | ★ 85,748 | ★ 97 |
| 30d uses | — | — |
| Score | 77 | 46 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | AI / LLM ToolsDeveloper ToolsOther |
| Language | TypeScript | C++ |
| Last commit | this month | 4 mo ago |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
openfoam-mcp-server · Summary
Intelligent CFD education system using Socratic questioning and OpenFOAM integration with AI-driven problem solving.
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
openfoam-mcp-server · Use cases
- Educational tool for students learning computational fluid dynamics concepts progressively
- Professional CFD analysis assistant with intelligent parameter extraction and error resolution
- Research tool for RDE analysis with specialized 2D/3D wave detection capabilities
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-everythingopenfoam-mcp-server · Install
Installation
Prerequisites
- OpenFOAM v12 installed
- C++20 compatible compiler
- Python 3.8+ for MCP components
Build Instructions
git clone https://github.com/webworn/openfoam-mcp-server.git
cd openfoam-mcp-server
mkdir build && cd build
cmake ..
makeClaude Desktop Integration
Add to Claude Desktop config:
{
"mcpServers": {
"openfoam": {
"command": "path/to/openfoam-mcp-server/build/openfoam-mcp",
"args": []
}
}
}