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 | — | — |
| Score | 77 | 36 |
| Official | ✓ | — |
| Categories | Developer ToolsAI / LLM ToolsOther | Developer ToolsAI / LLM ToolsProductivity |
| Language | TypeScript | Python |
| Last commit | this month | 14 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-everythinguser-feedback-mcp · Install
Installation
Cline
- Install [uv](https://github.com/astral-sh/uv) globally
- Clone this repository
- Navigate to Cline's MCP Servers configuration
- 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.pyThis opens a web interface at http://localhost:5173 for testing.