Skip to main content
Glama

supabase_create_project

Creates a new Supabase project. Always ask the user which organization to create the project in. The project can take a few minutes to initialize - use get_project to check the status.

Bulk support: accepts organization_ids, confirm_cost_ids for batched execution.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
nameYes
regionYes
confirm_cost_idYes
organization_idYes
confirm_cost_idsNo
organization_idsNo

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A4.2/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description discloses that the project 'can take a few minutes to initialize' and tells the agent to check status with `get_project`, which is valuable behavioral context beyond the annotations. The annotations only state readOnlyHint=false, which implies mutation, so the description adds timing and fallback information. It doesn't mention cost implications or confirmation details, but the annotations already indicate non-read-only, so this is above baseline.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise, with two short paragraphs that are front-loaded. The first sentence states the core purpose, the second provides critical user interaction guidance and status-check instructions, and the third efficiently adds bulk support information. Every sentence adds value, and there is no redundant detail.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's complexity—6 parameters, no output schema, and mutation with long initialization—the description covers key operational aspects: asking the user for organization, initialization delay, and status-check fallback. It also notes bulk parameters. However, it doesn't explain what to do with the `confirm_cost_id` (e.g., need to get cost first), which is a gap given the sibling tool `supabase_get_cost` existschers. Still, it provides a solid foundation for an agent to proceed.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema covers 0% of the parameters in descriptions, but the tool description mentions 'organization_ids' and 'confirm_cost_ids' in the bulk support note, adding meaning to those specific parameters. However, it does not explain 'confirm_cost_id' or 'region' values beyond the enum list, leaving the agent to infer their purpose. With 6 parameters and no schema-level descriptions, the tool description partially compensates but not fully, so a baseline of 3 is fair.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: 'Creates a new Supabase project.' It identifies the verb (creates) and resource (Supabase project), and it distinguishes itself from siblings like 'supabase_pause_project' or 'supabase_restore_project' by the action. However, it doesn't explicitly contrast with `supabase_create_branch` or other creation tools, so sibling differentiation is not fully achieved.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description gives explicit usage instructions: 'Always ask the user which organization to create the project in,' which provides a required prerequisite for invocation. It also directs the user to use `get_project` to check status after creation, indicating a follow-up action. This clearly guides when to use the tool and what to do next, though it doesn't explicitly say when not to use it, but the alternatives are covered by the follow-up instruction.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

B3.4/5.0
Disambiguation4/5

The Supabase-prefixed tools are all distinct CRUD/lifecycle operations on different resource types (projects, branches, migrations, edge functions, etc.). The platform-level tools (authenticate, connect, marketplace, etc.) have clear non-overlapping purposes, though their names could momentarily be confused with Supabase-specific actions if an agent doesn't read descriptions.

Naming Consistency3/5

The 29 supabase_* tools follow a consistent 'supabase_<verb>_<noun>' pattern. However, the 6 non-prefixed platform tools (authenticate, connect, marketplace, report_bug, show_version, toolkit_info) break this convention and are inconsistent among themselves, creating a mixed naming style across the set.

Tool Count2/5

At 35 tools, the server is overweight. While the Supabase domain is broad (project management, database, edge functions, branches), the inclusion of 6 unrelated platform tools inflates the count. 29 domain tools still exceeds the comfortable 15-tool upper bound, making the surface feel bloated for agents to navigate.

Completeness3/5

The tool set covers core workflows: project lifecycle (create, get, list, pause, restore), branching (create, delete, list, merge, rebase, reset), SQL/migrations, edge functions, cost estimation, and advisors. However, there are notable gaps such as no delete_project, no update operations for projects or branches, and no deletion for edge functions, which leave lifecycle coverage incomplete.