ropilot 0.1.18 → 0.1.20
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/lib/proxy.js +6 -4
- package/package.json +2 -1
package/lib/proxy.js
CHANGED
|
@@ -89,14 +89,16 @@ async function handleToolsCall(apiKey, request) {
|
|
|
89
89
|
async function processRequest(apiKey, request) {
|
|
90
90
|
const method = request.method;
|
|
91
91
|
|
|
92
|
+
// Notifications (methods starting with "notifications/") don't get responses
|
|
93
|
+
if (method.startsWith('notifications/')) {
|
|
94
|
+
// No response for notifications
|
|
95
|
+
return null;
|
|
96
|
+
}
|
|
97
|
+
|
|
92
98
|
switch (method) {
|
|
93
99
|
case 'initialize':
|
|
94
100
|
return await handleInitialize(apiKey, request);
|
|
95
101
|
|
|
96
|
-
case 'initialized':
|
|
97
|
-
// Notification, no response needed
|
|
98
|
-
return null;
|
|
99
|
-
|
|
100
102
|
case 'tools/list':
|
|
101
103
|
return await handleToolsList(apiKey, request);
|
|
102
104
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "ropilot",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.20",
|
|
4
4
|
"description": "AI-powered Roblox development assistant - MCP CLI",
|
|
5
5
|
"author": "whut",
|
|
6
6
|
"license": "MIT",
|
|
@@ -17,6 +17,7 @@
|
|
|
17
17
|
"ai",
|
|
18
18
|
"mcp",
|
|
19
19
|
"claude",
|
|
20
|
+
"cursor",
|
|
20
21
|
"model-context-protocol"
|
|
21
22
|
],
|
|
22
23
|
"homepage": "https://ropilot.ai",
|