MCP Catalogs
Home

pic-standard vs everything

Side-by-side comparison to help you pick between these two MCP servers.

pic-standard
by madeinplutofabio
everything
by modelcontextprotocol
Stars★ 23★ 85,748
30d uses
Score4377
Official
Categories
SecurityAI / LLM ToolsDeveloper Tools
Developer ToolsAI / LLM ToolsOther
LanguagePythonTypeScript
Last committhis monththis month

pic-standard · Summary

MCP server providing Provenance & Intent Contracts (PIC) to verify agent actions before execution.

everything · Summary

Official MCP test server exercising all protocol features for client builders.

pic-standard · Use cases

  • Preventing unauthorized financial transactions by AI agents
  • Blocking data export from prompt injection attacks
  • Verifying AI agent tool calls before execution in high-risk systems

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

pic-standard · Install

Install the PIC standard package:

pip install pic-standard[mcp]

To use with Claude Desktop, add to your config.json:

{
  "mcpServers": {
    "pic": {
      "command": "python",
      "args": ["-m", "pic_standard.mcp"]
    }
  }
}

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
Comparison generated from public README + GitHub signals. Last updated automatically.