cursor-feedback-extension vs everything
Side-by-side comparison to help you pick between these two MCP servers.
cursor-feedback-extension by jianger666 | everything by modelcontextprotocol | |
|---|---|---|
| Stars | ★ 28 | ★ 85,748 |
| 30d uses | — | — |
| Score | 43 | 77 |
| Official | — | ✓ |
| Categories | AI / LLM ToolsDeveloper ToolsProductivity | Developer ToolsAI / LLM ToolsOther |
| Language | JavaScript | TypeScript |
| Last commit | 4 mo ago | this month |
cursor-feedback-extension · Summary
MCP server that enables unlimited AI interactions in Cursor by implementing a feedback loop mechanism within IDE sidebar.
everything · Summary
Official MCP test server exercising all protocol features for client builders.
cursor-feedback-extension · Use cases
- Enabling long-running AI conversations without hitting Cursor's monthly request limit
- Implementing human-in-the-loop workflows where AI seeks validation before proceeding
- Enhancing collaboration by allowing AI to share work summaries and gather feedback directly in IDE
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
cursor-feedback-extension · Install
Installation Options
**1. Cursor Extension Marketplace** Search for "Cursor Feedback" in the Cursor extension marketplace.
**2. Command Line Installation**
cursor --install-extension jianger666.cursor-feedback**3. MCP Configuration** Add to your Cursor MCP config file (~/.cursor/mcp.json):
{
"mcpServers": {
"cursor-feedback": {
"command": "npx",
"args": ["-y", "cursor-feedback@latest"]
}
}
}**4. Global Installation**
npm install -g cursor-feedbackThen configure with:
{
"mcpServers": {
"cursor-feedback": {
"command": "cursor-feedback-mcp"
}
}
}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