Skip to content

Commit 3b90877

Browse files
committed
feat: add MCP server configurations for mcp-feedback-enhanced and mcp-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
1 parent a198b6a commit 3b90877

File tree

2 files changed

+84
-0
lines changed

2 files changed

+84
-0
lines changed
Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
id: mcp-feedback-enhanced
2+
name: MCP Feedback Enhanced
3+
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.
4+
author: Minidoracat
5+
authorUrl: https://github.com/Minidoracat
6+
url: https://github.com/Minidoracat/mcp-feedback-enhanced
7+
tags:
8+
- feedback
9+
- interactive
10+
- ui
11+
- desktop
12+
- web
13+
- development
14+
- cross-platform
15+
content:
16+
- name: NPM Installation
17+
content: |
18+
{
19+
"mcpServers": {
20+
"mcp-feedback-enhanced": {
21+
"command": "npx",
22+
"args": ["-y", "mcp-feedback-enhanced"]
23+
}
24+
}
25+
}
26+
prerequisites:
27+
- Node.js and npm installed
28+
- name: Local Installation
29+
content: |
30+
{
31+
"mcpServers": {
32+
"mcp-feedback-enhanced": {
33+
"command": "node",
34+
"args": ["/path/to/mcp-feedback-enhanced/dist/index.js"]
35+
}
36+
}
37+
}
38+
prerequisites:
39+
- Node.js installed
40+
- Clone the repository and build the project
Lines changed: 44 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,44 @@
1+
id: mcp-shrimp-task-manager
2+
name: Shrimp Task Manager
3+
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.
4+
author: cjo4m06
5+
authorUrl: https://github.com/cjo4m06
6+
url: https://github.com/cjo4m06/mcp-shrimp-task-manager
7+
tags:
8+
- task-manager
9+
- agent
10+
- ai
11+
- chain-of-thought
12+
- reflection
13+
- development
14+
- task-tracking
15+
- dependency-tracking
16+
- roocode
17+
- cursor-ai
18+
- windsurf
19+
content:
20+
- name: NPM Installation
21+
content: |
22+
{
23+
"mcpServers": {
24+
"mcp-shrimp-task-manager": {
25+
"command": "npx",
26+
"args": ["-y", "mcp-shrimp-task-manager"]
27+
}
28+
}
29+
}
30+
prerequisites:
31+
- Node.js and npm installed
32+
- name: Local Installation
33+
content: |
34+
{
35+
"mcpServers": {
36+
"mcp-shrimp-task-manager": {
37+
"command": "node",
38+
"args": ["/path/to/mcp-shrimp-task-manager/dist/index.js"]
39+
}
40+
}
41+
}
42+
prerequisites:
43+
- Node.js installed
44+
- Clone the repository and build the project

0 commit comments

Comments
 (0)