MCP Catalogs
Home

everything vs loopin-mcp

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

everything
by modelcontextprotocol
loopin-mcp
by nicholasemccormick
Stars★ 85,748★ 0
30d uses
Score7736
Official
Categories
Developer ToolsAI / LLM ToolsOther
AI / LLM ToolsDeveloper ToolsProductivity
LanguageTypeScriptTypeScript
Last committhis month1 mo ago

everything · Summary

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

loopin-mcp · Summary

LoopIn is an MCP server providing human-in-the-loop interrupt API for AI agents to request human review at critical decision points.

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

loopin-mcp · Use cases

  • AI agents seeking human approval for financial transactions before execution
  • Autonomous systems requiring human review for potentially risky operations
  • Teams implementing human oversight in automated decision-making workflows

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

loopin-mcp · Install

Install LoopIn MCP server via npm:

npm install -g @colossal-api/loopin-mcp

Configure in Claude Desktop:

{
  "mcpServers": {
    "loopin": {
      "command": "npx",
      "args": ["-y", "@colossal-api/loopin-mcp"],
      "env": {
        "LOOPIN_API_URL": "https://your-loopin-instance.railway.app",
        "LOOPIN_API_KEY": "your-key"
      }
    }
  }
}
Comparison generated from public README + GitHub signals. Last updated automatically.