@insforge/mcp 1.1.7-dev.2 → 1.1.7-dev.3
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.
|
@@ -161,8 +161,8 @@ var deleteTableResponse = z2.object({
|
|
|
161
161
|
});
|
|
162
162
|
var rawSQLRequestSchema = z2.object({
|
|
163
163
|
query: z2.string().min(1, "Query is required"),
|
|
164
|
-
params: z2.array(z2.
|
|
165
|
-
// z.
|
|
164
|
+
params: z2.array(z2.unknown()).optional()
|
|
165
|
+
// z.unknown() generates JSON Schema with items: {}
|
|
166
166
|
});
|
|
167
167
|
var rawSQLResponseSchema = z2.object({
|
|
168
168
|
rows: z2.array(z2.record(z2.string(), z2.unknown())),
|
package/dist/http-server.js
CHANGED
package/dist/index.js
CHANGED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@insforge/mcp",
|
|
3
|
-
"version": "1.1.7-dev.
|
|
3
|
+
"version": "1.1.7-dev.3",
|
|
4
4
|
"description": "MCP (Model Context Protocol) server for Insforge backend-as-a-service",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"main": "dist/index.js",
|
|
@@ -34,7 +34,7 @@
|
|
|
34
34
|
"mcp.json"
|
|
35
35
|
],
|
|
36
36
|
"dependencies": {
|
|
37
|
-
"@insforge/shared-schemas": "^1.1.
|
|
37
|
+
"@insforge/shared-schemas": "^1.1.7",
|
|
38
38
|
"@modelcontextprotocol/sdk": "^1.15.1",
|
|
39
39
|
"@types/express": "^5.0.3",
|
|
40
40
|
"commander": "^14.0.0",
|