@postmcp/presets 0.1.6 → 0.1.8

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/dist/index.mjs CHANGED
@@ -461,7 +461,7 @@ var CLOUD_DATABASES_PRESETS = [
461
461
  authType: "Bearer (SUPABASE_ACCESS_TOKEN)",
462
462
  authEnvVar: "SUPABASE_ACCESS_TOKEN",
463
463
  defaultBaseUrl: "https://api.supabase.com/v1",
464
- specUrl: "https://api.supabase.com/v1/openapi.json",
464
+ specUrl: "https://api.supabase.com/api/v1-json",
465
465
  tags: ["postgres", "auth", "database", "storage", "edge-functions", "baas"],
466
466
  fieldMasks: [
467
467
  { path: "/projects", fields: ["id", "name", "region", "status", "created_at"] }
@@ -479,7 +479,7 @@ var CLOUD_DATABASES_PRESETS = [
479
479
  },
480
480
  steps: [
481
481
  { id: "getProject", action: "GET /projects/{{ref}}" },
482
- { id: "getHealth", action: "GET /projects/{{ref}}/health" }
482
+ { id: "getHealth", action: "GET /projects/{{ref}}/health?services=db" }
483
483
  ]
484
484
  }
485
485
  ],
@@ -491,7 +491,16 @@ var CLOUD_DATABASES_PRESETS = [
491
491
  endpoints: [
492
492
  { path: "/projects", method: "get", operationId: "getProjects", summary: "List all Supabase projects" },
493
493
  { path: "/projects/{ref}", method: "get", operationId: "getProject", summary: "Get project details", parameters: [{ name: "ref", in: "path", schema: { type: "string" } }] },
494
- { path: "/projects/{ref}/health", method: "get", operationId: "getProjectHealth", summary: "Get database health status", parameters: [{ name: "ref", in: "path", schema: { type: "string" } }] },
494
+ {
495
+ path: "/projects/{ref}/health",
496
+ method: "get",
497
+ operationId: "getProjectHealth",
498
+ summary: "Get database health status",
499
+ parameters: [
500
+ { name: "ref", in: "path", schema: { type: "string" } },
501
+ { name: "services", in: "query", schema: { type: "string", default: "db" }, description: "Service name (e.g. db, auth, storage, realtime, pooler)" }
502
+ ]
503
+ },
495
504
  { path: "/organizations", method: "get", operationId: "getOrganizations", summary: "List organizations" },
496
505
  { path: "/projects/{ref}/functions", method: "get", operationId: "getFunctions", summary: "List Edge Functions", parameters: [{ name: "ref", in: "path", schema: { type: "string" } }] }
497
506
  ]
@@ -1196,12 +1205,12 @@ var PRODUCTIVITY_SUPPORT_PRESETS = [
1196
1205
  id: "slack",
1197
1206
  name: "Slack Web API",
1198
1207
  description: "Post messages to channels, manage user groups, trigger modals, and upload file attachments.",
1199
- category: "Productivity & Support",
1208
+ category: "Communication & AI",
1200
1209
  authType: "Bearer (SLACK_BOT_TOKEN)",
1201
1210
  authEnvVar: "SLACK_BOT_TOKEN",
1202
1211
  defaultBaseUrl: "https://slack.com/api",
1203
1212
  specUrl: "https://raw.githubusercontent.com/slackapi/slack-api-specs/master/web-api/slack_web_openapi_v2.json",
1204
- tags: ["chat", "messaging", "bots", "channels", "collaboration"],
1213
+ tags: ["chat", "messaging", "bots", "channels", "collaboration", "communication"],
1205
1214
  macros: [
1206
1215
  {
1207
1216
  name: "postToChannel",
@@ -1236,11 +1245,11 @@ var PRODUCTIVITY_SUPPORT_PRESETS = [
1236
1245
  id: "discord",
1237
1246
  name: "Discord API",
1238
1247
  description: "Discord bot automation, server administration, voice channels, and rich embedded messages.",
1239
- category: "Productivity & Support",
1248
+ category: "Communication & AI",
1240
1249
  authType: "Header (Bot ...)",
1241
1250
  authEnvVar: "DISCORD_BOT_TOKEN",
1242
1251
  defaultBaseUrl: "https://discord.com/api/v10",
1243
- tags: ["chat", "gaming", "community", "bots", "guilds"],
1252
+ tags: ["chat", "gaming", "community", "bots", "guilds", "communication", "voice"],
1244
1253
  bundledSpec: buildOpenAPISpec({
1245
1254
  title: "Discord API",
1246
1255
  baseUrl: "https://discord.com/api/v10",
@@ -1383,11 +1392,11 @@ var PRODUCTIVITY_SUPPORT_PRESETS = [
1383
1392
  id: "zoom",
1384
1393
  name: "Zoom Video Communications API",
1385
1394
  description: "Schedule meetings, manage cloud recordings, handle webinars, and query user attendance.",
1386
- category: "Productivity & Support",
1395
+ category: "Communication & AI",
1387
1396
  authType: "Bearer (ZOOM_OAUTH_TOKEN)",
1388
1397
  authEnvVar: "ZOOM_OAUTH_TOKEN",
1389
1398
  defaultBaseUrl: "https://api.zoom.us/v2",
1390
- tags: ["video", "meetings", "webinars", "recordings"],
1399
+ tags: ["video", "meetings", "webinars", "recordings", "communication"],
1391
1400
  bundledSpec: buildOpenAPISpec({
1392
1401
  title: "Zoom Video Communications API",
1393
1402
  baseUrl: "https://api.zoom.us/v2",