arcade-mcp-ts vs everything
Side-by-side comparison to help you pick between these two MCP servers.
arcade-mcp-ts by ArcadeAI | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 2 | ★ 85,748 |
| 30d uses | — | — |
| Score | 38 | 77 |
| Official | — | ✓ |
| Categories | Developer ToolsAI / LLM ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | TypeScript | TypeScript |
| Last commit | 2 mo ago | this month |
arcade-mcp-ts · Summary
TypeScript framework for building MCP servers with OAuth, auth, secrets, middleware, and multi-user support.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
arcade-mcp-ts · Use cases
- Building secure MCP servers with OAuth authentication for enterprise applications
- Creating multi-user MCP servers with JWT authentication and workspace isolation
- Rapid prototyping of MCP servers with auto-discovery CLI and dev mode
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
arcade-mcp-ts · Install
bun add @arcadeai/arcade-mcpFor Claude Desktop integration, add to claude_desktop_config.json:
{
"mcpServers": {
"arcade": {
"command": "npx",
"args": ["@arcadeai/arcade-mcp", "--http"]
}
}
}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