-
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,40 @@ | ||
| id: mcp-feedback-enhanced | ||
| name: MCP Feedback Enhanced | ||
| description: Enhanced MCP server for interactive user feedback and command execution in AI-assisted development, featuring dual interface support (Web UI and Desktop Application) with intelligent environment detection and cross-platform compatibility. | ||
| author: Minidoracat | ||
| authorUrl: https://github.com/Minidoracat | ||
| url: https://github.com/Minidoracat/mcp-feedback-enhanced | ||
| tags: | ||
| - feedback | ||
| - interactive | ||
| - ui | ||
| - desktop | ||
| - web | ||
| - development | ||
| - cross-platform | ||
| content: | ||
| - name: NPM Installation | ||
| content: | | ||
| { | ||
| "mcpServers": { | ||
| "mcp-feedback-enhanced": { | ||
| "command": "npx", | ||
| "args": ["-y", "mcp-feedback-enhanced"] | ||
| } | ||
| } | ||
| } | ||
| prerequisites: | ||
| - Node.js and npm installed | ||
| - name: Local Installation | ||
| content: | | ||
| { | ||
| "mcpServers": { | ||
| "mcp-feedback-enhanced": { | ||
| "command": "node", | ||
| "args": ["/path/to/mcp-feedback-enhanced/dist/index.js"] | ||
| } | ||
| } | ||
| } | ||
| prerequisites: | ||
| - Node.js installed | ||
| - Clone the repository and build the project | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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? |
||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -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. | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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? |
||
| author: cjo4m06 | ||
| authorUrl: https://github.com/cjo4m06 | ||
| url: https://github.com/cjo4m06/mcp-shrimp-task-manager | ||
| tags: | ||
| - task-manager | ||
| - agent | ||
| - ai | ||
| - chain-of-thought | ||
| - reflection | ||
| - development | ||
| - task-tracking | ||
| - dependency-tracking | ||
| - roocode | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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'? |
||
| - cursor-ai | ||
| - windsurf | ||
| content: | ||
| - name: NPM Installation | ||
| content: | | ||
| { | ||
| "mcpServers": { | ||
| "mcp-shrimp-task-manager": { | ||
| "command": "npx", | ||
| "args": ["-y", "mcp-shrimp-task-manager"] | ||
| } | ||
| } | ||
| } | ||
| prerequisites: | ||
| - Node.js and npm installed | ||
| - name: Local Installation | ||
| content: | | ||
| { | ||
| "mcpServers": { | ||
| "mcp-shrimp-task-manager": { | ||
| "command": "node", | ||
| "args": ["/path/to/mcp-shrimp-task-manager/dist/index.js"] | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Same placeholder path issue here. Consider using |
||
| } | ||
| } | ||
| } | ||
| prerequisites: | ||
| - Node.js installed | ||
| - Clone the repository and build the project | ||
|
Contributor
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe 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. |
||
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.jsmight be confusing for users. Consider using a more descriptive placeholder like<YOUR_LOCAL_PATH>/mcp-feedback-enhanced/dist/index.jsor providing an example path?