everything vs pfc-mcp
Side-by-side comparison to help you pick between these two MCP servers.
everything by modelcontextprotocol | pfc-mcp by yusong652 | |
|---|---|---|
| Stars | ★ 85,748 | ★ 37 |
| 30d uses | — | — |
| Score | 77 | 44 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsProductivity |
| Language | TypeScript | Python |
| Last commit | this month | this month |
everything · Summary
Official MCP test server exercising all protocol features for client builders.
pfc-mcp · Summary
MCP server connecting AI agents to ITASCA PFC for running DEM simulations through natural conversation.
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
pfc-mcp · Use cases
- Automating DEM simulations through conversational AI interfaces
- Assisting researchers with PFC command documentation and usage examples
- Enabling remote control and monitoring of simulation tasks
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-everythingpfc-mcp · Install
Prerequisites
- ITASCA PFC 6.0, 7.0, or 9.0 installed
- [uv](https://docs.astral.sh/uv/getting-started/installation/) installed
Setup
- Register the MCP server in your client config:
{
"mcpServers": {
"pfc-mcp": {
"command": "uvx",
"args": ["pfc-mcp"]
}
}
}- Start the bridge from inside PFC by downloading and running [addon.py](addon.py)