MCP Catalogs
Home

everything vs user-feedback-mcp

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

everything
by modelcontextprotocol
user-feedback-mcp
by mrexodia
Stars★ 85,748★ 53
30d uses
Score7736
Official
Categories
Developer ToolsAI / LLM ToolsOther
Developer ToolsAI / LLM ToolsProductivity
LanguageTypeScriptPython
Last committhis month14 mo ago

everything · Summary

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

user-feedback-mcp · Summary

A simple MCP server enabling human-in-the-loop workflows for AI development tools like Cline and Cursor.

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

user-feedback-mcp · Use cases

  • Testing desktop applications with complex UI interactions
  • Gathering human validation for automated code generation
  • Creating human-in-the-loop workflows for AI-assisted development

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

user-feedback-mcp · Install

Installation

Cline

  1. Install [uv](https://github.com/astral-sh/uv) globally
  2. Clone this repository
  3. Navigate to Cline's MCP Servers configuration
  4. Add the following to your cline_mcp_settings.json:
{
  "mcpServers": {
    "github.com/mrexodia/user-feedback-mcp": {
      "command": "uv",
      "args": [
        "--directory",
        "<path_to_repo>",
        "run",
        "server.py"
      ],
      "timeout": 600,
      "autoApprove": [
        "user_feedback"
      ]
    }
  }
}

Development

uv run fastmcp dev server.py

This opens a web interface at http://localhost:5173 for testing.

Comparison generated from public README + GitHub signals. Last updated automatically.