Supabase Coolify MCP Server

MCP server for managing self-hosted Supabase on Coolify with full deployment support

Remote serverstreamable-httpTypeScript

What is the Supabase Coolify MCP server?

If you already use Supabase Coolify, the supabase coolify mcp server is the piece that lets your assistant work with it directly. MCP server for managing self-hosted Supabase on Coolify with full deployment support.

What the server does

A comprehensive TypeScript MCP (Model Context Protocol) server for managing self-hosted Supabase on Coolify. This server enables AI agents to fully deploy migrations, push edge functions, configure services, and manage Supabase deployments with ease.

Available tools

The toolset is worth reading before you wire it up, because it tells you what the integration is really for:

  • list_migrations — The list_migrations tool exposed by this server
  • deploy_migration — The deploy_migration tool exposed by this server
  • execute_sql — The execute_sql tool exposed by this server
  • get_migration_status — The get_migration_status tool exposed by this server
  • list_edge_functions — The list_edge_functions tool exposed by this server
  • deploy_edge_function — The deploy_edge_function tool exposed by this server
  • delete_edge_function — The delete_edge_function tool exposed by this server
  • get_edge_function_logs — The get_edge_function_logs tool exposed by this server
  • invoke_edge_function — The invoke_edge_function tool exposed by this server
  • list_storage_buckets — The list_storage_buckets tool exposed by this server
  • create_storage_bucket — The create_storage_bucket tool exposed by this server
  • delete_storage_bucket — The delete_storage_bucket tool exposed by this server

Credentials and setup notes

Configuration is passed through the environment: COOLIFY_API_URL, COOLIFY_API_TOKEN, SUPABASE_URL, SUPABASE_SERVICE_ROLE_KEY, API_KEY, CUSTOM_VAR, COOLIFY_TEAM_ID, SUPABASE_ANON_KEY. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

Installation

Because this one is hosted, setup is mostly authentication — you point your client at the endpoint and approve access. Nothing runs on your machine, so there is no runtime to keep patched.

Where it fits

Among the developer tooling options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. Supabase Coolify's toolset — list_migrations, deploy_migration, execute_sql and 11 more — is a fair guide to whether it matches your workflow. It is maintained by dj-pearson; worth a glance at recent repository activity before you build anything load-bearing on it.

SyncDev reviews every entry in this directory against the project's own documentation before publishing, and revisits them as servers change.

Worth knowing first

  • Your data travels to the provider's service, so the usual questions apply about what you send and what they retain.
  • With 14 tools registered it takes up a noticeable share of the context window; turn it off in projects that never touch Supabase Coolify.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
list_migrationsThe list_migrations tool exposed by this server.
deploy_migrationThe deploy_migration tool exposed by this server.
execute_sqlThe execute_sql tool exposed by this server.
get_migration_statusThe get_migration_status tool exposed by this server.
list_edge_functionsThe list_edge_functions tool exposed by this server.
deploy_edge_functionThe deploy_edge_function tool exposed by this server.
delete_edge_functionThe delete_edge_function tool exposed by this server.
get_edge_function_logsThe get_edge_function_logs tool exposed by this server.
invoke_edge_functionThe invoke_edge_function tool exposed by this server.
list_storage_bucketsThe list_storage_buckets tool exposed by this server.
create_storage_bucketThe create_storage_bucket tool exposed by this server.
delete_storage_bucketThe delete_storage_bucket tool exposed by this server.
get_auth_configThe get_auth_config tool exposed by this server.
update_auth_configThe update_auth_config tool exposed by this server.

How to install the Supabase Coolify MCP server

Then configure:
```json
{
  "mcpServers": {
    "supabase-coolify": {
      "command": "supabase-coolify-mcp",
      "env": {
        "COOLIFY_API_URL": "http://localhost:8000",
        "COOLIFY_API_TOKEN": "your-coolify-api-token",
        "SUPABASE_URL": "https://your-supabase-instance.example.com",
        "SUPABASE_SERVICE_ROLE_KEY": "your-service-role-key"
      }
    }
  }
}

Configuration as documented by the project. Restart the client after saving.

Configuration

VariableDescriptionRequired
COOLIFY_API_URLEndpoint or connection string the server talks to.Yes
COOLIFY_API_TOKENCredential the server authenticates with.Yes
SUPABASE_URLEndpoint or connection string the server talks to.Yes
SUPABASE_SERVICE_ROLE_KEYCredential the server authenticates with.Yes
API_KEYCredential the server authenticates with.Yes
CUSTOM_VARConfiguration value read at startup.Optional
COOLIFY_TEAM_IDConfiguration value read at startup.Optional
SUPABASE_ANON_KEYCredential the server authenticates with.Yes

Example prompts to try

  • Use Supabase Coolify to list migrations.
  • Use Supabase Coolify to deploy migration.
  • Use Supabase Coolify to execute sql.

Frequently asked questions

It connects Supabase Coolify to MCP-compatible AI assistants such as Claude and Cursor, exposing 14 tools (list_migrations, deploy_migration, execute_sql, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with Supabase Coolify directly.