MCP Catalogs
Home

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
Score7744
Official
Categories
Developer ToolsAI / LLM ToolsOther
Developer ToolsAI / LLM ToolsProductivity
LanguageTypeScriptPython
Last committhis monththis 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-everything

pfc-mcp · Install

Prerequisites

  • ITASCA PFC 6.0, 7.0, or 9.0 installed
  • [uv](https://docs.astral.sh/uv/getting-started/installation/) installed

Setup

  1. Register the MCP server in your client config:
{
  "mcpServers": {
    "pfc-mcp": {
      "command": "uvx",
      "args": ["pfc-mcp"]
    }
  }
}
  1. Start the bridge from inside PFC by downloading and running [addon.py](addon.py)
Comparison generated from public README + GitHub signals. Last updated automatically.