-
Notifications
You must be signed in to change notification settings - Fork 2.6k
feat: add new MCP servers to marketplace (mcp-feedback-enhanced and mcp-shrimp-task-manager) #6794
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
…-shrimp-task-manager - Added mcp-feedback-enhanced: Interactive user feedback and command execution server - Added mcp-shrimp-task-manager: Task management tool for AI agents with chain-of-thought Fixes #6791
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I reviewed my own code and found several issues. Classic me.
| } | ||
| prerequisites: | ||
| - Node.js installed | ||
| - Clone the repository and build the project No newline at end of file |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing newline at end of file. This violates POSIX standards and may cause issues with some tools. Could you add a newline character at the end?
| "mcpServers": { | ||
| "mcp-feedback-enhanced": { | ||
| "command": "node", | ||
| "args": ["/path/to/mcp-feedback-enhanced/dist/index.js"] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The placeholder path /path/to/mcp-feedback-enhanced/dist/index.js might be confusing for users. Consider using a more descriptive placeholder like <YOUR_LOCAL_PATH>/mcp-feedback-enhanced/dist/index.js or providing an example path?
| } | ||
| prerequisites: | ||
| - Node.js installed | ||
| - Clone the repository and build the project No newline at end of file |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing newline at end of file. Same issue as the other file - needs a newline character at the end for POSIX compliance.
| - development | ||
| - task-tracking | ||
| - dependency-tracking | ||
| - roocode |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These platform-specific tags (roocode, cursor-ai, windsurf) seem overly specific compared to the more generic tags in the other file. Should we maintain consistency in tag naming across MCP server configurations? Perhaps use more generic tags like 'ide-integration' or 'ai-assistant'?
| @@ -0,0 +1,44 @@ | |||
| id: mcp-shrimp-task-manager | |||
| name: Shrimp Task Manager | |||
| description: Shrimp Task Manager is a task tool built for AI Agents, emphasizing chain-of-thought, reflection, and style consistency. It converts natural language into structured dev tasks with dependency tracking and iterative refinement, enabling agent-like developer behavior in reasoning AI systems. | |||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This description is quite lengthy (3 lines). For better readability in the marketplace UI, could we consider shortening it to focus on the key features?
| "mcpServers": { | ||
| "mcp-shrimp-task-manager": { | ||
| "command": "node", | ||
| "args": ["/path/to/mcp-shrimp-task-manager/dist/index.js"] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Same placeholder path issue here. Consider using <YOUR_LOCAL_PATH>/mcp-shrimp-task-manager/dist/index.js for clarity?
This PR adds two new MCP server configurations to the marketplace as requested in issue #6791.
Added MCP Servers
1. mcp-feedback-enhanced
2. mcp-shrimp-task-manager
Changes Made
marketplace/mcps/directory for MCP server configurationsBoth configurations include NPM and local installation methods with appropriate prerequisites.
Fixes #6791
Important
Adds two new MCP server configurations to the marketplace with installation methods and prerequisites.
mcp-feedback-enhanced.yaml: Adds configuration for MCP Feedback Enhanced server with dual interface support and cross-platform compatibility.mcp-shrimp-task-manager.yaml: Adds configuration for Shrimp Task Manager server focusing on AI task management and dependency tracking.This description was created by
for 3b90877. You can customize this summary. It will automatically update as commits are pushed.