Presets: add Supabase to MCP and OpenAPI catalogs - #1723
Closed
kjhq wants to merge 1 commit into
Closed
Conversation
Author
|
Closing — testing locally before resubmitting. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
What
Adds Supabase to both well-known integration catalogs:
MCP preset (
packages/plugins/mcp/src/sdk/presets.ts) — Supabase's hostedMCP server:
{ id: "neon", name: "Neon", summary: "Serverless Postgres — branches, queries, and management.", url: "https://mcp.neon.tech/mcp", endpoint: "https://mcp.neon.tech/mcp", 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, + },OpenAPI preset (
packages/plugins/openapi/src/sdk/presets.ts) — SupabaseManagement API:
{ id: "neon", name: "Neon", summary: "Serverless Postgres: projects, branches, and endpoints.", url: "https://neon.tech/api_spec/release/v2.json", 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, + },Why
Supabase's hosted MCP server (
https://mcp.supabase.com/mcp) covers Postgresqueries, auth, storage, edge functions, and project management over OAuth. It
is already exercised by the MCP plugin's live probe suite
(
probe-shape-real-servers.live.test.ts) and its OAuth challenge shape isexplicitly handled in
probe-shape.ts— only the catalog entry was missing.The Management API spec (
https://api.supabase.com/api/v1-json, access-tokenauth) adds the REST surface: projects, organizations, databases, auth, storage,
and billing.
Both endpoints verified live:
mcp.supabase.com/mcpresponds (OAuthchallenge, as expected),
api.supabase.com/api/v1-jsonserves the spec (200),and
integrations.sh/logo/supabase.comresolves.Verification
bun install.bun run formatthenbun run format:check.bun run lintandbun run typecheck.bun run test(turbo, e2e excluded).All gates pass locally: format/lint/typecheck clean,
@executor-js/plugin-mcp138 tests pass (30 skipped are the live-servertests, skipped by default),
@executor-js/plugin-openapi283 tests pass.Changeset
.changeset/supabase-presets.md—@executor-js/plugin-mcp+@executor-js/plugin-openapipatch.