MCP Catalogs
Home

everything vs AgentRunKit

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

everything
by modelcontextprotocol
AgentRunKit
by Tom-Ryder
Stars★ 85,748★ 24
30d uses
Score7742
Official
Categories
Developer ToolsAI / LLM ToolsOther
AI / LLM ToolsDeveloper ToolsOther
LanguageTypeScriptSwift
Last committhis month1 mo ago

everything · Summary

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

AgentRunKit · Summary

Swift 6 agent SDK with type-safe tools, streaming support, and MCP integration.

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

AgentRunKit · Use cases

  • Building iOS and macOS applications with LLM agents
  • Creating development tools with type-safe AI capabilities
  • Implementing local-first agents with Apple Silicon MLX support

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

AgentRunKit · Install

Install via Swift Package Manager:

.package(url: "https://github.com/Tom-Ryder/AgentRunKit.git", from: "2.4.0")
.target(name: "YourApp", dependencies: ["AgentRunKit"])

For Claude Desktop integration, add to claude_desktop_config.json:

{
  "mcpServers": {
    "agentrunkit": {
      "command": "swift",
      "args": ["run", "agentrunkit"],
      "env": {}
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.