MCP Catalogs
Home

everything vs formanator

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

everything
by modelcontextprotocol
formanator
by timrogers
Stars★ 85,748★ 84
30d uses
Score7746
Official
Categories
Developer ToolsAI / LLM ToolsOther
FinanceProductivityAI / LLM Tools
LanguageTypeScriptRust
Last committhis monththis month

everything · Summary

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

formanator · Summary

Command-line tool and MCP server for submitting and managing Forma benefit claims with receipt analysis.

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

formanator · Use cases

  • Automatically submit expense receipts for Forma benefits in bulk
  • Integrate Forma claim management into AI assistants via MCP
  • Automatically categorize and process receipt images using LLM analysis

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

formanator · Install

Installation

macOS or Linux via Homebrew
brew tap timrogers/tap && brew install formanator
macOS, Linux, or Windows via Cargo
# Install Rust if not already installed
# https://www.rust-lang.org/tools/install
cargo install formanator
Via direct binary download
  1. Download the [latest release](https://github.com/timrogers/formanator/releases/latest)
  2. Add the binary to your PATH

Claude Desktop Configuration

{
  "mcpServers": {
    "formanator": {
      "command": "/path/to/formanator",
      "args": ["mcp"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.