MCP Catalogs
Home

roo-logger vs everything

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

roo-logger
by annenpolka
everything
by modelcontextprotocol
Stars★ 24★ 85,748
30d uses
Score4077
Official
Categories
Developer ToolsProductivityAI / LLM Tools
Developer ToolsAI / LLM ToolsOther
LanguageTypeScriptTypeScript
Last commit9 mo agothis month

roo-logger · Summary

An MCP server that automatically logs AI coding assistant activities like command executions and code generation.

everything · Summary

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

roo-logger · Use cases

  • Tracking and analyzing AI coding assistant activities for productivity analysis
  • Restoring context when resuming interrupted development tasks
  • Creating audit trails of code generation and file modifications

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

roo-logger · Install

Installation

Via npx (Recommended)

Add the following to your Cline, Roo-Code, or Claude Code configuration:

{
  "mcpServers": {
    "roo-activity-logger": {
      "command": "npx",
      "args": ["-y", "github:annenpolka/roo-logger"],
      "env": {},
      "disabled": false
    }
  }
}

Local Development

git clone https://github.com/annenpolka/roo-logger.git
cd roo-logger
npm install
npm run build

Then configure to use the local build:

{
  "mcpServers": {
    "roo-activity-logger": {
      "command": "node",
      "args": ["/path/to/your/local/roo-logger/dist/index.js"],
      "env": {},
      "disabled": false
    }
  }
}

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.