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 | — | — |
| Score | 77 | 46 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | FinanceProductivityAI / LLM Tools |
| Language | TypeScript | Rust |
| Last commit | this month | this 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-everythingformanator · Install
Installation
macOS or Linux via Homebrew
brew tap timrogers/tap && brew install formanatormacOS, Linux, or Windows via Cargo
# Install Rust if not already installed
# https://www.rust-lang.org/tools/install
cargo install formanatorVia direct binary download
- Download the [latest release](https://github.com/timrogers/formanator/releases/latest)
- Add the binary to your PATH
Claude Desktop Configuration
{
"mcpServers": {
"formanator": {
"command": "/path/to/formanator",
"args": ["mcp"]
}
}
}