@liangshanli/mcp-server-project-standards 2.1.5 → 2.1.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/utils/api_debug.js +6 -10
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@liangshanli/mcp-server-project-standards",
|
|
3
|
-
"version": "2.1.
|
|
3
|
+
"version": "2.1.6",
|
|
4
4
|
"description": "MCP Project Standards server with project info, structure, API standards, development standards, API debugging, login authentication and configuration management tools",
|
|
5
5
|
"main": "bin/cli.js",
|
|
6
6
|
"bin": {
|
package/src/utils/api_debug.js
CHANGED
|
@@ -78,31 +78,27 @@ async function api_debug(params, config, saveConfig) {
|
|
|
78
78
|
content: [
|
|
79
79
|
{
|
|
80
80
|
type: "text",
|
|
81
|
-
text: "
|
|
81
|
+
text: "⚠️ IMPORTANT: You MUST use addApi to add the API to the list first! Use api_config tool.\n\n🔧 Step 1: Add API to Configuration (REQUIRED)\n\nCall: api_config with action=\"addApi\" and api={\"url\":\"${url}\",\"method\":\"${requestMethod}\",\"body\":\"your corrected JSON here\"}\n\n⚠️ REMINDER: You MUST use api_config with addApi to add the API to the list!"
|
|
82
82
|
},
|
|
83
83
|
{
|
|
84
84
|
type: "text",
|
|
85
|
-
text: "
|
|
85
|
+
text: "🔧 Step 2: Execute API by Index\n\nAfter adding the API, call: api_execute with index=<returned index>\n\nThis will execute the pre-configured API with the correct format."
|
|
86
86
|
},
|
|
87
87
|
{
|
|
88
88
|
type: "text",
|
|
89
|
-
text: "
|
|
89
|
+
text: "🚨 REMINDER: You MUST use addApi first!\n\n- Use api_config with action=\"addApi\" to add the API to the list\n- Then use api_execute with the returned index to execute"
|
|
90
90
|
},
|
|
91
91
|
{
|
|
92
92
|
type: "text",
|
|
93
|
-
text: "
|
|
93
|
+
text: "💡 IMPORTANT: Remember to use addApi!\n\n- First: api_config with action=\"addApi\" to add the API\n- Second: api_execute with index to run the API"
|
|
94
94
|
},
|
|
95
95
|
{
|
|
96
96
|
type: "text",
|
|
97
|
-
text: "
|
|
98
|
-
},
|
|
99
|
-
{
|
|
100
|
-
type: "text",
|
|
101
|
-
text: "💡 Why This Approach is Required:\n- Invalid JSON cannot be processed directly\n- addApi allows you to fix the JSON format\n- Configuration is saved for reuse\n- Better error handling and debugging"
|
|
97
|
+
text: "📋 Final Reminder: Use addApi → Then api_execute\n\n1. First: api_config with action=\"addApi\"\n2. Then: api_execute with index=<number>\n\nThis is the ONLY way to handle invalid JSON requests."
|
|
102
98
|
},
|
|
103
99
|
{
|
|
104
100
|
type: "text",
|
|
105
|
-
text: "
|
|
101
|
+
text: "⚠️ ESSENTIAL: You MUST use addApi!\n\n- First: api_config with action=\"addApi\" to add the API\n- Second: api_execute with index to run the API"
|
|
106
102
|
}
|
|
107
103
|
]
|
|
108
104
|
};
|