Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 14 additions & 0 deletions .changeset/supabase-presets.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,14 @@
---
"@executor-js/plugin-mcp": patch
"@executor-js/plugin-openapi": patch
---

**Supabase joins the well-known integration catalogs**

The MCP plugin's preset catalog now includes Supabase's hosted MCP server
(`https://mcp.supabase.com/mcp`, OAuth-authenticated) for Postgres queries,
auth, storage, edge functions, and project management. The OpenAPI plugin's
catalog additionally includes the Supabase Management API
(`https://api.supabase.com/api/v1-json`, access-token auth) for projects,
organizations, databases, and billing. Both endpoints are already exercised by
the plugin's probe/health-check paths.
9 changes: 9 additions & 0 deletions packages/plugins/mcp/src/sdk/presets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,15 @@ export const mcpPresets: readonly McpPreset[] = [
icon: "https://integrations.sh/logo/neon.tech",
featured: true,
},
{
id: "supabase",
name: "Supabase",
summary: "Postgres, auth, storage, edge functions, and project management via MCP.",
url: "https://mcp.supabase.com/mcp",
endpoint: "https://mcp.supabase.com/mcp",
icon: "https://integrations.sh/logo/supabase.com",
featured: true,
},
{
id: "axiom",
name: "Axiom",
Expand Down
8 changes: 8 additions & 0 deletions packages/plugins/openapi/src/sdk/presets.ts
Original file line number Diff line number Diff line change
Expand Up @@ -101,6 +101,14 @@ const openApiOnlyPresets: readonly OpenApiPreset[] = [
icon: "https://integrations.sh/logo/neon.tech",
featured: true,
},
{
id: "supabase",
name: "Supabase",
summary: "Projects, organizations, databases, auth, and storage management.",
url: "https://api.supabase.com/api/v1-json",
icon: "https://integrations.sh/logo/supabase.com",
featured: true,
},
{
id: "openai",
name: "OpenAI",
Expand Down