MCP Catalogs
Home

everything vs agentify

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

everything
by modelcontextprotocol
agentify
by MonadWorks
Stars★ 85,748★ 25
30d uses
Score7744
Official
Categories
Developer ToolsAI / LLM ToolsOther
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last committhis month2 mo ago

everything · Summary

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

agentify · Summary

Converts OpenAPI specs to MCP servers and other AI agent interfaces with a single command.

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

agentify · Use cases

  • Convert existing REST API documentation to an MCP server for use with AI assistants
  • Generate documentation files for multiple AI development platforms from a single OpenAPI spec
  • Create CLI tools from API specifications for command-line interaction

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

agentify · Install

Install via npm:

npm install -g agentify-cli

Transform an OpenAPI spec to MCP server:

npx agentify-cli transform https://petstore.swagger.io/v2/swagger.json

For Claude Desktop, add the following to your claude_desktop_config.json:

{
  "mcpServers": {
    "my-api": {
      "command": "node",
      "args": ["/path/to/generated/mcp-server.js"]
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.