@insforge/mcp 1.2.4-deployment.1 → 1.2.4-deployment.2
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.
|
@@ -744,9 +744,7 @@ var realtimePermissionsResponseSchema = z8.object({
|
|
|
744
744
|
});
|
|
745
745
|
|
|
746
746
|
// node_modules/@insforge/shared-schemas/dist/metadata.schema.js
|
|
747
|
-
var authMetadataSchema =
|
|
748
|
-
oauths: z9.array(oAuthConfigSchema)
|
|
749
|
-
});
|
|
747
|
+
var authMetadataSchema = getPublicAuthConfigResponseSchema;
|
|
750
748
|
var databaseMetadataSchema = z9.object({
|
|
751
749
|
tables: z9.array(z9.object({
|
|
752
750
|
tableName: z9.string(),
|
|
@@ -1079,23 +1077,27 @@ var cloudEventSchema = z16.discriminatedUnion("type", [
|
|
|
1079
1077
|
import { z as z17 } from "zod";
|
|
1080
1078
|
var docTypeSchema = z17.enum([
|
|
1081
1079
|
"instructions",
|
|
1080
|
+
"auth-sdk",
|
|
1082
1081
|
"db-sdk",
|
|
1083
1082
|
"storage-sdk",
|
|
1084
1083
|
"functions-sdk",
|
|
1085
1084
|
"ai-integration-sdk",
|
|
1086
1085
|
"auth-components-react",
|
|
1087
1086
|
"auth-components-nextjs",
|
|
1088
|
-
"real-time"
|
|
1087
|
+
"real-time",
|
|
1088
|
+
"deployment"
|
|
1089
1089
|
]).describe(`
|
|
1090
|
-
Documentation type:
|
|
1090
|
+
Documentation type:
|
|
1091
1091
|
"instructions" (essential backend setup - use FIRST),
|
|
1092
1092
|
"db-sdk" (database operations),
|
|
1093
1093
|
"storage-sdk" (file storage),
|
|
1094
1094
|
"functions-sdk" (edge functions),
|
|
1095
|
+
"auth-sdk" (direct SDK methods for custom auth flows),
|
|
1095
1096
|
"auth-components-react" (authentication components for React+Vite applications),
|
|
1096
1097
|
"auth-components-nextjs" (authentication components for Next.js applications),
|
|
1097
1098
|
"ai-integration-sdk" (AI features),
|
|
1098
|
-
"real-time" (real-time pub/sub through WebSockets)
|
|
1099
|
+
"real-time" (real-time pub/sub through WebSockets),
|
|
1100
|
+
"deployment" (deploy frontend applications via MCP tool)
|
|
1099
1101
|
`);
|
|
1100
1102
|
|
|
1101
1103
|
// node_modules/@insforge/shared-schemas/dist/email-api.schema.js
|
|
@@ -1135,7 +1137,7 @@ var deploymentStatusSchema = z19.enum([
|
|
|
1135
1137
|
]);
|
|
1136
1138
|
var deploymentSchema = z19.object({
|
|
1137
1139
|
id: z19.string().uuid(),
|
|
1138
|
-
|
|
1140
|
+
providerDeploymentId: z19.string().nullable(),
|
|
1139
1141
|
// Provider's deployment ID, null until deployment starts
|
|
1140
1142
|
provider: z19.string(),
|
|
1141
1143
|
status: deploymentStatusSchema,
|
|
@@ -2018,7 +2020,7 @@ To: Your current project directory
|
|
|
2018
2020
|
);
|
|
2019
2021
|
server.tool(
|
|
2020
2022
|
"create-deployment",
|
|
2021
|
-
"Deploy source code from a directory.
|
|
2023
|
+
"Deploy source code from a directory. This tool zips files, uploads to cloud storage, and triggers deployment with optional environment variables and project settings.",
|
|
2022
2024
|
{
|
|
2023
2025
|
sourceDirectory: z21.string().describe("Path to the source directory containing files to deploy"),
|
|
2024
2026
|
...startDeploymentRequestSchema.shape
|
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.2.4-deployment.
|
|
3
|
+
"version": "1.2.4-deployment.2",
|
|
4
4
|
"description": "MCP (Model Context Protocol) server for Insforge backend-as-a-service",
|
|
5
5
|
"mcpName": "io.github.InsForge/insforge-mcp",
|
|
6
6
|
"type": "module",
|
|
@@ -36,7 +36,7 @@
|
|
|
36
36
|
"server.json"
|
|
37
37
|
],
|
|
38
38
|
"dependencies": {
|
|
39
|
-
"@insforge/shared-schemas": "1.1.
|
|
39
|
+
"@insforge/shared-schemas": "1.1.37-deployment.1",
|
|
40
40
|
"@modelcontextprotocol/sdk": "^1.15.1",
|
|
41
41
|
"@types/express": "^5.0.3",
|
|
42
42
|
"commander": "^14.0.0",
|