@insforge/mcp 1.1.3-dev.2 → 1.1.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.
@@ -1339,11 +1339,11 @@ ${JSON.stringify(metadata, null, 2)}`
1339
1339
  );
1340
1340
  server.tool(
1341
1341
  "get-container-logs",
1342
- "Get latest 100 logs from a specific container/service. Available sources: insforge.logs (backend), postgREST.logs (API), postgres.logs (database), function.logs (edge functions)",
1342
+ "Get latest logs from a specific container/service. Use this to help debug problems with your app.",
1343
1343
  {
1344
1344
  apiKey: z14.string().optional().describe("API key for authentication (optional if provided via --api_key)"),
1345
1345
  source: z14.enum(["insforge.logs", "postgREST.logs", "postgres.logs", "function.logs"]).describe("Log source to retrieve"),
1346
- limit: z14.number().optional().default(100).describe("Number of logs to return (default: 100)")
1346
+ limit: z14.number().optional().default(20).describe("Number of logs to return (default: 20)")
1347
1347
  },
1348
1348
  withUsageTracking("get-container-logs", async ({ apiKey, source, limit }) => {
1349
1349
  try {
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  import {
3
3
  registerInsforgeTools
4
- } from "./chunk-DR4IN3DB.js";
4
+ } from "./chunk-5MTS2H7O.js";
5
5
 
6
6
  // src/http/server.ts
7
7
  import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
package/dist/index.js CHANGED
@@ -1,7 +1,7 @@
1
1
  #!/usr/bin/env node
2
2
  import {
3
3
  registerInsforgeTools
4
- } from "./chunk-DR4IN3DB.js";
4
+ } from "./chunk-5MTS2H7O.js";
5
5
 
6
6
  // src/stdio/index.ts
7
7
  import { McpServer } from "@modelcontextprotocol/sdk/server/mcp.js";
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@insforge/mcp",
3
- "version": "1.1.3-dev.2",
3
+ "version": "1.1.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",