MCP Hub
Back to servers

LaunchFrame MCP

Provides AI agents with architectural knowledge and scaffolding tools for LaunchFrame projects, covering patterns for authentication, queues, webhooks, and module structures. It enables agents to retrieve project-specific implementation details and generate code snippets on demand to maintain consistency.

glama
Stars
1
Updated
Mar 6, 2026

@launchframe/mcp

MCP server that gives AI agents (Claude Code, Cursor, etc.) architectural knowledge about your LaunchFrame project — auth patterns, entity conventions, queue usage, cron jobs, webhooks, and more.

Installation

Running launchframe init automatically configures this MCP server in your project. No manual setup needed.

What It Does

Instead of bloating CLAUDE.md with rules, agents call tools on demand to pull the exact pattern they need:

ToolDescription
auth_get_overviewAuth system, guard hierarchy, session flow
auth_get_decorator_usageExact decorator for a given auth need
auth_get_guard_usageGuard class + import for admin/user/credits
feature_gates_get_overviewHow feature gates are stored and queried
feature_gates_get_check_patternCopy-paste feature check snippet
credits_get_deduction_patternDecorator + guard for route-level credit deduction
credits_get_add_patternCode snippet for programmatic credit addition
credits_get_monetization_strategiesOverview of free/subscription/credits/hybrid modes
queue_get_namesAvailable Bull queues and their purpose
queue_scaffold_producerProducer injection snippet for a given queue
queue_scaffold_processorProcessor class scaffold for a queue + job name
webhook_get_architectureReceipt/processing separation, retry logic
webhook_scaffold_handlerController + processor scaffold for a provider/event
cron_get_patternWhere crons live, available schedules, rules
cron_scaffold_jobCron method scaffold to add to CronService
module_get_structureNestJS module folder structure and conventions
module_scaffold_nestjsFull module scaffold (module + service + controller + entity)
entity_get_conventionsTypeORM entity conventions and required decorators
entity_scaffold_typeormTypeORM entity file scaffold
env_get_conventionsCentralized .env rules and key variable reference
variant_get_overviewBase / Multi-tenant / B2B2C variant differences

Manual Install

If you prefer a global install:

npm install -g @launchframe/mcp

Then in .mcp.json:

{
  "mcpServers": {
    "launchframe": {
      "command": "launchframe-mcp"
    }
  }
}

Reviews

No reviews yet

Sign in to write a review