Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
40 changes: 40 additions & 0 deletions marketplace/mcps/mcp-feedback-enhanced.yaml
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"]
Copy link
Contributor Author

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
Copy link
Contributor Author

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?

44 changes: 44 additions & 0 deletions marketplace/mcps/mcp-shrimp-task-manager.yaml
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.
Copy link
Contributor Author

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?

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
Copy link
Contributor Author

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'?

- 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"]
Copy link
Contributor Author

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?

}
}
}
prerequisites:
- Node.js installed
- Clone the repository and build the project
Copy link
Contributor Author

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.

Loading