mcpforge vs everything
Side-by-side comparison to help you pick between these two MCP servers.
mcpforge by lorenzosaraiva | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 17 | ★ 85,748 |
| 30d uses | — | — |
| Score | 45 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | this month | this month |
mcpforge · Summary
MCPForge generates optimized MCP servers from OpenAPI specs or documentation with AI curation and workflow planning.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
mcpforge · Use cases
- Rapidly create MCP servers for popular APIs like Stripe, Discord, or Notion with optimized tooling
- Transform complex REST APIs with hundreds of endpoints into focused, LLM-friendly MCP interfaces
- Maintain MCP servers with drift detection and automatic updates when upstream APIs change
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
mcpforge · Install
Install MCPForge globally:
npm install -g mcpforgeGenerate a new MCP server from an OpenAPI spec:
npx mcpforge init --optimize --workflows https://api.example.com/openapi.jsonTo use in Claude Desktop, add this to your Claude Desktop config.json:
{
"mcpServers": {
"example-api": {
"command": "node",
"args": ["./path/to/generated/server.js"]
}
}
}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