MCP Catalogs
Home

Agentic-MCP-Skill vs everything

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

Agentic-MCP-Skill
by cablate
everything
by modelcontextprotocol
Stars★ 32★ 85,748
30d uses
Score4077
Official
Categories
Developer ToolsBrowser AutomationAI / LLM Tools
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit4 mo agothis month

Agentic-MCP-Skill · Summary

A progressive MCP client with three-layer lazy loading that reduces token usage by up to 86%.

everything · Summary

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

Agentic-MCP-Skill · Use cases

  • Reducing token usage in AI applications that interact with multiple MCP servers
  • Browser automation with Playwright MCP server through progressive loading
  • Managing multiple MCP servers efficiently with a persistent daemon connection

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

Agentic-MCP-Skill · Install

Installation

# Install globally
npm install -g @cablate/agentic-mcp

# Verify installation
agentic-mcp --version

# Start daemon
agentic-mcp daemon start

Claude Desktop Configuration

Add to Claude's claude_desktop_config.json:

{
  "mcpServers": {
    "agentic-mcp": {
      "command": "agentic-mcp",
      "args": ["daemon", "start"]
    }
  }
}

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
Comparison generated from public README + GitHub signals. Last updated automatically.