fusebase-gate

Operate Fusebase Gate MCP tools for tokens, auth, billing, files, and isolated SQL stores.

5|2|Updated Feb 9, 2026
One-click install
npx skills add https://github.com/ryan-haver/fusebase-mcp --skill fusebase-gate-ryan-haver
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: fusebase-gate
Source: https://github.com/ryan-haver/fusebase-mcp/tree/main/apps/client-portal-dashboard/.claude/skills/fusebase-gate
Command: npx skills add https://github.com/ryan-haver/fusebase-mcp --skill fusebase-gate-ryan-haver

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires @fusebase/fusebase-gate-sdk, and includes references (resource) components.

What problem does it solve? Developers building AI apps on the Fusebase platform need correct, up-to-date guidance for calling Fusebase Gate operations through MCP, including authentication scopes, token permission modes, magic-link onboarding, billing, file uploads, and isolated PostgreSQL stores, without guessing wire contracts or misusing product versus app identifiers. ## Core Features & Use Cases - Gate MCP Operations: Discover, describe, and execute Gate tools for tokens, org users, health checks, and generated MCP prompts via a verified connection bootstrap flow. - Specialized Reference Library: Load on-demand references covering auth for AI apps, app magic links, Stripe billing, emails, files, membership, notes, portals, org groups, and isolated SQL migration discipline. - SDK Runtime Patterns: Enforce reliable permission sync, operation-level error handling, and fail-closed auth rules when using @fusebase/fusebase-gate-sdk in application code. - Use Case: When building a client portal that invites users by email, load the app magic links reference to correctly call createAppMagicLink with the product id, handle activation tokens, and run the mandatory post-activation session exchange. ## Quick Start Ask the AI to verify the fusebase-gate MCP connection and list available Gate tools for managing org users and tokens.

Frequently Asked Questions about fusebase-gate

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I use Fusebase Gate MCP tools in an AI coding session?▼

First verify the fusebase-gate MCP server is connected by checking for tools like tools_list, tools_search, and bootstrap. Then read the connection context resource or call bootstrap, discover operations with tools_search, inspect schemas with tools_describe, and execute with tool_call.

How do I create app magic links with Fusebase Gate?▼

Call createAppMagicLink with the org id and the product id from fusebase.json as the appId path segment, not an app id from fusebase app list. The response returns id, magicLinkUrl, and expiresAt only for new accounts or previously activated recipients.

When should I use the Gate SDK instead of MCP tools?▼

Use MCP tools for actions inside the LLM session such as discovery and token management. Use the @fusebase/fusebase-gate-sdk npm package in runtime application code, keeping direct typed API method calls so permission sync static analysis detects operations.

Why does createAppMagicLink return App not found?▼

The appId path segment must be the product id from fusebase.json, not an app id from fusebase app list. The Gate wire contract uses pre-rename field names, so mixing product and app identifiers is the most common cause of this 404.

What are the limitations of Gate token permission validation?▼

Token permission validation is soft by default: Gate degrades requested permissions to the allowed subset and ignores unknown permissions rather than failing. Strict mode is available only for explicit fail-fast requirements.

When should I not use the fusebase-gate skill?▼

Do not use it for dashboard schema, rows, or files cell payload guidance; load the fusebase-dashboards skill instead. For the canonical low-level upload lifecycle, use the file-upload skill's upload-lifecycle reference.