Fireberry Apps MCP
Connect an AI coding assistant to the Fireberry CLI with MCP to build, deploy, and install Fireberry Apps.
Build Fireberry Apps with an AI assistant by connecting it to the Fireberry CLI through the Model Context Protocol (MCP).
Fireberry Apps MCP lets AI assistants such as Claude Code, Cursor, VS Code, and other MCP-compatible IDEs understand your app structure, scaffold components, and run Fireberry development workflows from natural-language requests.
What is Fireberry Apps MCP?
Fireberry Apps MCP exposes the Fireberry App development workflow to AI coding assistants. The Fireberry CLI acts as the bridge between your AI assistant and the Fireberry Apps platform.
Instead of manually running CLI commands, you can ask your assistant to:
- Create Fireberry Apps
- Generate components
- Build and deploy apps
- Install apps into your Fireberry account
- Read and update an app manifest
- Follow Fireberry best practices while generating code
What you can build
Use Fireberry Apps MCP to create each type of Fireberry App component.
Record components
Build custom experiences inside CRM records, such as:
- Customer Health Dashboard
- AI Lead Summary
- Related Data Viewer
- Financial Analysis Panel
Side menu apps
Create full applications inside Fireberry, such as:
- Analytics Dashboard
- Custom Reports
- Inventory Management
- Internal Operations Tools
Global menu apps
Create organization-wide applications, such as:
- KPI Dashboard
- AI Command Center
- Marketing Hub
- Executive Reporting
Prerequisites
Complete these steps before you connect an AI client:
- Install Node.js 18 or later.
- Install npm.
- Create or sign in to your Fireberry account.
- Create a Fireberry API token.
- Install an MCP-compatible client, such as Claude Code, Cursor, or VS Code.
Install and authenticate the Fireberry CLI
- Install the latest Fireberry CLI globally:
npm install -g @fireberry/cli@latest- Authenticate the CLI with your Fireberry account:
fireberry init- Verify that the CLI is installed:
fireberry --versionThe CLI provides the commands you use to create, deploy, debug, and install Fireberry Apps.
Enable MCP
Configure your AI client to run the Fireberry CLI as an MCP server. Add the following configuration to your client's MCP settings:
{
"mcpServers": {
"fireberry-apps": {
"command": "npx",
"args": [
"-y",
"@fireberry/cli"
]
}
}
}
NoteYour AI client's MCP configuration format may differ. Use its client-specific MCP setup instructions when adding the
fireberry-appsserver.
Use Fireberry Apps MCP
After you connect the MCP server, open your AI assistant and describe the app or change you want to make.
Create an app
Create a Fireberry App called Sales Dashboard.Add a component
Add a record component for Contacts that displays AI-generated summaries.Generate a UI
Create a side menu app that shows a chart of opportunities by stage.Build and deploy
Build and deploy my app.Install an app
Install the app into my Fireberry account.Typical development workflow
- Install the Fireberry CLI.
- Connect your AI client to the MCP server.
- Open Claude, Cursor, or another MCP-compatible client.
- Describe the app you want to build.
- Review the code your assistant generates.
- Build the app.
- Deploy the app.
- Install it into your Fireberry account.
Behind the scenes
Your AI assistant uses the Fireberry CLI to run the same operations you can run manually.
| Command | Purpose |
|---|---|
fireberry create | Create a new app. |
fireberry create-component | Add components. |
fireberry push | Deploy the app. |
fireberry install | Install the app into Fireberry. |
fireberry debug | Debug locally. |
fireberry delete | Remove an app. |
Related documentation
Updated about 9 hours ago
