forked from tosin2013/mcp-shrimp-task-manager
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmcp-test-config.json
More file actions
140 lines (140 loc) · 4.79 KB
/
mcp-test-config.json
File metadata and controls
140 lines (140 loc) · 4.79 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
{
"mcpServers": {
"shrimp-task-manager": {
"command": "node",
"args": ["dist/index.js"],
"env": {
"NODE_ENV": "test",
"LOG_LEVEL": "info"
}
}
},
"systemPrompt": "You are testing the MCP Shrimp Task Manager with enhanced Idea Honing System, Research Mode, and comprehensive task management capabilities.",
"testSuites": {
"comprehensive": {
"description": "Comprehensive tool testing across all categories",
"tests": [
{
"name": "project_management_tools",
"description": "Test project management capabilities",
"tools": [
{
"name": "init_project_rules",
"params": { "random_string": "comprehensive_testing_init" },
"expectedOutputs": ["Project rules initialized", "standards", "guidelines"]
}
]
},
{
"name": "idea_honing_system",
"description": "Test complete Idea Honing System workflow",
"tools": [
{
"name": "create_spec",
"params": {
"title": "Real-Time Collaboration Platform Test",
"description": "Test specification creation with comprehensive analysis",
"scope": "src/test/",
"template": "basic"
},
"expectedOutputs": ["Specification Created", "UUID", "Codebase Analysis"]
},
{
"name": "get_spec",
"params": { "format": "summary" },
"expectedOutputs": ["Specification Summary", "ID", "Status"]
},
{
"name": "interact_spec",
"params": { "command": "help" },
"expectedOutputs": ["Available commands", "view", "edit", "progress"]
}
]
},
{
"name": "task_management",
"description": "Test comprehensive task management workflow",
"tools": [
{
"name": "plan_task",
"params": {
"description": "Implement user authentication system with JWT tokens and OAuth2 integration"
},
"expectedOutputs": ["Task planning", "analysis", "workflow"]
},
{
"name": "split_tasks",
"params": {
"updateMode": "clearAllTasks",
"tasksRaw": "[{\"name\": \"Test Task\", \"description\": \"Simple test task for validation\", \"implementationGuide\": \"Basic implementation\", \"dependencies\": [], \"relatedFiles\": [], \"verificationCriteria\": \"Task works correctly\"}]",
"globalAnalysisResult": "Test task creation for validation"
},
"expectedOutputs": ["Task Splitting", "Task List", "ID"]
},
{
"name": "list_tasks",
"params": { "status": "all" },
"expectedOutputs": ["task", "status", "progress"]
},
{
"name": "query_task",
"params": { "query": "test", "page": 1, "pageSize": 5 },
"expectedOutputs": ["search", "results", "task"]
},
{
"name": "get_task_detail",
"params": {},
"expectedOutputs": ["Task details", "implementation", "verification"]
}
]
},
{
"name": "task_execution",
"description": "Test task execution and verification workflow",
"tools": [
{
"name": "execute_task",
"params": {},
"expectedOutputs": ["execution", "task", "implementation"]
},
{
"name": "verify_task",
"params": { "score": 85, "summary": "Test task verification completed successfully" },
"expectedOutputs": ["verification", "completed", "score"]
},
{
"name": "delete_task",
"params": {},
"expectedOutputs": ["deleted", "removed", "task"]
}
]
},
{
"name": "research_mode",
"description": "Test systematic research capabilities",
"tools": [
{
"name": "research_mode",
"params": {
"topic": "React vs Vue.js performance comparison",
"currentState": "Initial framework comparison research",
"nextSteps": "Analyze performance benchmarks and metrics"
},
"expectedOutputs": ["research", "topic", "analysis"]
}
]
}
]
}
},
"globalSettings": {
"timeout": 30000,
"retries": 2,
"failFast": false,
"verbose": true,
"confidence": {
"minimum": 75,
"target": 90
}
}
}