Back to MCP Overview

App Builder Tools

Tools for creating and managing app builder projects, pages, and components.

63 tools

Available Tools

appBuilder_listProjects

List all app builder projects. Returns array with id, name, description, linkedBaseId, page count, component count.

Example Call

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "appBuilder_listProjects",
    "arguments": {}
  }
}
appBuilder_getProject

Get a project with its pages, components, linkedBase, and triggers

Input Schema

idstringrequired

Project ID from listProjects

Example Call

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "appBuilder_getProject",
    "arguments": {
          "id": "example"
    }
  }
}
appBuilder_createProject

Create a new app builder project

Input Schema

namestringrequired

Project name

descriptionstring

Optional project description

colorstring

Hex color code (default: #3B82F6)

Example Call

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "appBuilder_createProject",
    "arguments": {
          "name": "example",
          "description": "example",
          "color": "example"
    }
  }
}
appBuilder_updateProject

Update project settings including branding and dependencies

Input Schema

idstringrequired

Project ID from listProjects

namestring

New project name

descriptionstring

New description

colorstring

New hex color code

logostring

URL to logo image (recommended: 200x50px PNG or SVG)

faviconstring

URL to favicon image (recommended: 32x32px PNG or ICO)

dependenciesobject

NPM packages to bundle. Example: {"framer-motion": "^10.0.0", "chart.js": "^4.4.0"}. Packages are installed via Bun and bundled by Vite for production. Tailwind CSS is included by default.

aiKnowledgestring

AI project knowledge - persistent instructions for AI including project goals, coding style, and constraints

Example Call

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "appBuilder_updateProject",
    "arguments": {
          "id": "example",
          "name": "example",
          "description": "example"
    }
  }
}
appBuilder_updateProjectAuth

Update project authentication settings

Input Schema

idstringrequired

Project ID

authEnabledboolean

Enable authentication for this app

authAllowSignupboolean

Allow new users to sign up

authRequireEmailboolean

Require email verification

authAllowSocialboolean

Allow social login (Google, GitHub)

authCustomFieldsarray

Custom signup form fields - added after email/password/name

Example Call

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "appBuilder_updateProjectAuth",
    "arguments": {
          "id": "example",
          "authEnabled": true,
          "authAllowSignup": true
    }
  }
}
appBuilder_listEnvVars

List environment variables for a project

Input Schema

projectIdstringrequired

Project ID

Example Call

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "appBuilder_listEnvVars",
    "arguments": {
          "projectId": "example"
    }
  }
}
appBuilder_createEnvVar

Create a new environment variable

Input Schema

projectIdstringrequired

Project ID

namestringrequired

Variable name (e.g., OPENAI_API_KEY)

valuestringrequired

Variable value

descriptionstring

Optional description

isSecretboolean

If true, value is masked in UI

Example Call

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "appBuilder_createEnvVar",
    "arguments": {
          "projectId": "example",
          "name": "example",
          "value": "example"
    }
  }
}
appBuilder_updateEnvVar

Update an environment variable

Input Schema

idstringrequired

Environment variable ID

valuestring

New value (only if changing)

descriptionstring

New description

isSecretboolean

Update secret flag

Example Call

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "appBuilder_updateEnvVar",
    "arguments": {
          "id": "example",
          "value": "example",
          "description": "example"
    }
  }
}
appBuilder_deleteEnvVar

Delete an environment variable

Input Schema

idstringrequired

Environment variable ID to delete

Example Call

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "appBuilder_deleteEnvVar",
    "arguments": {
          "id": "example"
    }
  }
}
appBuilder_updateCustomDomain

Update custom domain settings

Input Schema

idstringrequired

Project ID

customDomainstring

Custom domain (e.g., myapp.com)

Example Call

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "appBuilder_updateCustomDomain",
    "arguments": {
          "id": "example",
          "customDomain": "example"
    }
  }
}
appBuilder_getAppUsers

Get users who signed up to this published app

Input Schema

projectIdstringrequired

Project ID

limitnumber
offsetnumber

Example Call

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "appBuilder_getAppUsers",
    "arguments": {
          "projectId": "example",
          "limit": 0,
          "offset": 0
    }
  }
}
appBuilder_deleteAppUser

Delete a user from this published app

Input Schema

projectIdstringrequired

Project ID

userIdstringrequired

App user ID to delete

Example Call

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "appBuilder_deleteAppUser",
    "arguments": {
          "projectId": "example",
          "userId": "example"
    }
  }
}
appBuilder_createAppUser

Manually create a user for this published app

Input Schema

projectIdstringrequired

Project ID

emailstringrequired

User email

namestring

User name

passwordstringrequired

User password (min 8 chars)

rolestring

User role

sendWelcomeEmailboolean

Send welcome email with credentials

Example Call

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "appBuilder_createAppUser",
    "arguments": {
          "projectId": "example",
          "email": "example",
          "name": "example"
    }
  }
}
appBuilder_resetAppUserPassword

Reset password for an app user

Input Schema

projectIdstringrequired

Project ID

userIdstringrequired

App user ID

newPasswordstringrequired

New password (min 8 chars)

Example Call

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "appBuilder_resetAppUserPassword",
    "arguments": {
          "projectId": "example",
          "userId": "example",
          "newPassword": "example"
    }
  }
}
appBuilder_updateAppUserRole

Update role for an app user

Input Schema

projectIdstringrequired

Project ID

userIdstringrequired

App user ID

rolestringrequired

New role

Example Call

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "appBuilder_updateAppUserRole",
    "arguments": {
          "projectId": "example",
          "userId": "example",
          "role": "example"
    }
  }
}
appBuilder_deleteProject

Delete a project, its linked Base, and all pages/components

Input Schema

idstringrequired

Project ID to delete

Example Call

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "appBuilder_deleteProject",
    "arguments": {
          "id": "example"
    }
  }
}
appBuilder_createPage

Create a new page in a project

Input Schema

projectIdstringrequired

Project ID from listProjects

namestringrequired

Page name (e.g., "About", "Contact")

pathstringrequired

URL path (e.g., "/about", "/contact")

Example Call

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "appBuilder_createPage",
    "arguments": {
          "projectId": "example",
          "name": "example",
          "path": "example"
    }
  }
}
appBuilder_createComponent

Create a new component in a project

Input Schema

projectIdstringrequired

Project ID from listProjects

namestringrequired

Component name

descriptionstring

Optional component description

typestring

Component type: "custom", "layout", "ui", or "data"

isGlobalboolean

Whether component is globally accessible

Example Call

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "appBuilder_createComponent",
    "arguments": {
          "projectId": "example",
          "name": "example",
          "description": "example"
    }
  }
}
appBuilder_listPages

List all pages in a project

Input Schema

projectIdstringrequired

Project ID from listProjects

Example Call

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "appBuilder_listPages",
    "arguments": {
          "projectId": "example"
    }
  }
}
appBuilder_getPage

Get page details including content

Input Schema

idstringrequired

Page ID from listPages

Example Call

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "appBuilder_getPage",
    "arguments": {
          "id": "example"
    }
  }
}
appBuilder_readPage

Read page content with line numbers. Use offset/limit to read specific sections of large files.

Input Schema

idstringrequired

Page ID from listPages

offsetnumber

Line number to start from (1-indexed). If not specified, starts from line 1.

limitnumber

Number of lines to read. If not specified, reads entire file.

Example Call

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "appBuilder_readPage",
    "arguments": {
          "id": "example",
          "offset": 0,
          "limit": 0
    }
  }
}
appBuilder_readComponent

Read component content with line numbers. Use offset/limit for large files.

Input Schema

idstringrequired

Component ID from listComponents

offsetnumber

Line number to start from (1-indexed)

limitnumber

Number of lines to read

Example Call

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "appBuilder_readComponent",
    "arguments": {
          "id": "example",
          "offset": 0,
          "limit": 0
    }
  }
}
appBuilder_updatePage

Update page properties and content

Input Schema

idstringrequired

Page ID from listPages

namestring

New page name

pathstring

New URL path

contentstring

Page content (React component code or JSON)

layoutstring

Layout template name

isHomePageboolean

Set as home page

sortOrdernumber

Sort order for navigation

titlestring

Page title for SEO

descriptionstring

Page description for SEO

isProtectedboolean

Require authentication to access

requiredRolestring

Required role to access (null = any authenticated user)

redirectIfUnauthstring

Redirect path for unauthenticated users

commitMessagestring

Custom git commit message. If not provided, auto-generated based on action

Example Call

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "appBuilder_updatePage",
    "arguments": {
          "id": "example",
          "name": "example",
          "path": "example"
    }
  }
}
appBuilder_editPage

Edit page content by replacing specific text. The oldString must match exactly (including whitespace/indentation). If not unique, either provide more surrounding context or use replaceAll=true.

Input Schema

idstringrequired

Page ID from listPages

oldStringstringrequired

The exact text to find and replace. Must be unique in the file unless using replaceAll.

newStringstringrequired

The replacement text (must be different from oldString)

replaceAllboolean

Replace all occurrences. If false (default), oldString must be unique in the file.

Example Call

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "appBuilder_editPage",
    "arguments": {
          "id": "example",
          "oldString": "example",
          "newString": "example"
    }
  }
}
appBuilder_searchPage

Search page content for specific text/patterns. Returns matching lines with context. More efficient than getPage for finding specific code.

Input Schema

idstringrequired

Page ID from listPages

patternstringrequired

Text or regex pattern to search for

contextLinesnumber

Number of lines to show before and after each match (default: 3)

maxMatchesnumber

Maximum number of matches to return (default: 5)

Example Call

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "appBuilder_searchPage",
    "arguments": {
          "id": "example",
          "pattern": "example",
          "contextLines": 0
    }
  }
}
appBuilder_deletePage

Delete a page from the project

Input Schema

idstringrequired

Page ID to delete

Example Call

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "appBuilder_deletePage",
    "arguments": {
          "id": "example"
    }
  }
}
appBuilder_listComponents

List all components in a project

Input Schema

projectIdstringrequired

Project ID from listProjects

Example Call

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "appBuilder_listComponents",
    "arguments": {
          "projectId": "example"
    }
  }
}
appBuilder_getComponent

Get component details including content

Input Schema

idstringrequired

Component ID from listComponents

Example Call

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "appBuilder_getComponent",
    "arguments": {
          "id": "example"
    }
  }
}
appBuilder_updateComponent

Update component properties and code

Input Schema

idstringrequired

Component ID from listComponents

namestring

New component name

descriptionstring

Component description

contentstring

Component code (React/TSX)

typestring

Component type

isGlobalboolean

Whether globally accessible

Example Call

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "appBuilder_updateComponent",
    "arguments": {
          "id": "example",
          "name": "example",
          "description": "example"
    }
  }
}
appBuilder_editComponent

Edit component content by replacing specific text. The oldString must match exactly (including whitespace/indentation). If not unique, provide more context or use replaceAll=true.

Input Schema

idstringrequired

Component ID from listComponents

oldStringstringrequired

The exact text to find and replace. Must be unique unless using replaceAll.

newStringstringrequired

The replacement text (must be different from oldString)

replaceAllboolean

Replace all occurrences. If false (default), oldString must be unique.

Example Call

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "appBuilder_editComponent",
    "arguments": {
          "id": "example",
          "oldString": "example",
          "newString": "example"
    }
  }
}
appBuilder_searchComponent

Search component content for specific text/patterns. Returns matching lines with context.

Input Schema

idstringrequired

Component ID from listComponents

patternstringrequired

Text or regex pattern to search for

contextLinesnumber

Lines to show before/after match

maxMatchesnumber

Maximum matches to return

Example Call

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "appBuilder_searchComponent",
    "arguments": {
          "id": "example",
          "pattern": "example",
          "contextLines": 0
    }
  }
}
appBuilder_deleteComponent

Delete a component from the project

Input Schema

idstringrequired

Component ID to delete

Example Call

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "appBuilder_deleteComponent",
    "arguments": {
          "id": "example"
    }
  }
}
appBuilder_listTriggers

List all triggers (event-flow mappings) in a project

Input Schema

projectIdstringrequired

Project ID from listProjects

Example Call

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "appBuilder_listTriggers",
    "arguments": {
          "projectId": "example"
    }
  }
}
appBuilder_createTrigger

Create a trigger to execute a flow when an event occurs

Input Schema

projectIdstringrequired

Project ID from listProjects

eventstringrequired

Event type

flowIdstringrequired

Flow ID to execute when event fires

targetPageIdstring

Page ID for page-specific events

targetElementIdstring

Element ID for element-specific events (button clicks, form submits)

Example Call

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "appBuilder_createTrigger",
    "arguments": {
          "projectId": "example",
          "event": "example",
          "flowId": "example"
    }
  }
}
appBuilder_updateTrigger

Update trigger settings

Input Schema

idstringrequired

Trigger ID from listTriggers

flowIdstring

New Flow ID

isActiveboolean

Enable/disable trigger

orderIndexnumber

Execution order

Example Call

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "appBuilder_updateTrigger",
    "arguments": {
          "id": "example",
          "flowId": "example",
          "isActive": true
    }
  }
}
appBuilder_deleteTrigger

Delete a trigger

Input Schema

idstringrequired

Trigger ID to delete

Example Call

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "appBuilder_deleteTrigger",
    "arguments": {
          "id": "example"
    }
  }
}
appBuilder_publish

Publish an app to production. Builds all pages and uploads to R2 for serving.

Input Schema

idstringrequired

Project ID to publish

Example Call

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "appBuilder_publish",
    "arguments": {
          "id": "example"
    }
  }
}
appBuilder_unpublish

Unpublish an app (keeps files in R2 but marks as unpublished)

Input Schema

idstringrequired

Project ID to unpublish

Example Call

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "appBuilder_unpublish",
    "arguments": {
          "id": "example"
    }
  }
}
appBuilder_verifyCustomDomain

Verify custom domain ownership via DNS TXT record lookup

Input Schema

idstringrequired

Project ID

Example Call

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "appBuilder_verifyCustomDomain",
    "arguments": {
          "id": "example"
    }
  }
}
appBuilder_getCodeGuide

Get coding guide for writing App Builder pages. Call this BEFORE writing any page code to understand available globals and patterns.

Input Schema

topicstring

Topic: "all", "sdk", "globals", "hooks", "navigation", "libraries", "styling", "components", "examples", "errors"

Example Call

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "appBuilder_getCodeGuide",
    "arguments": {
          "topic": "example"
    }
  }
}
appBuilder_getStripeConnection

Get Stripe connection status for a project

Input Schema

projectIdstringrequired

Project ID

Example Call

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "appBuilder_getStripeConnection",
    "arguments": {
          "projectId": "example"
    }
  }
}
appBuilder_updateStripeConnection

Save Stripe API key and/or webhook secret for test or live mode

Input Schema

projectIdstringrequired

Project ID

modestringrequired

Which mode to update

secretKeystring

Stripe Secret Key (sk_test_xxx or sk_live_xxx)

webhookSecretstring

Stripe Webhook Secret (whsec_xxx)

Example Call

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "appBuilder_updateStripeConnection",
    "arguments": {
          "projectId": "example",
          "mode": "example",
          "secretKey": "example"
    }
  }
}
appBuilder_toggleStripeMode

Switch between test and live Stripe mode

Input Schema

projectIdstringrequired

Project ID

modestringrequired

Mode to switch to

Example Call

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "appBuilder_toggleStripeMode",
    "arguments": {
          "projectId": "example",
          "mode": "example"
    }
  }
}
appBuilder_syncStripeProducts

Sync products and prices from Stripe account

Input Schema

projectIdstringrequired

Project ID

Example Call

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "appBuilder_syncStripeProducts",
    "arguments": {
          "projectId": "example"
    }
  }
}
appBuilder_listStripeProducts

List synced Stripe products

Input Schema

projectIdstringrequired

Project ID

modestring

Filter by mode (default: current mode)

Example Call

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "appBuilder_listStripeProducts",
    "arguments": {
          "projectId": "example",
          "mode": "example"
    }
  }
}
appBuilder_disconnectStripe

Remove Stripe connection for test or live mode

Input Schema

projectIdstringrequired

Project ID

modestringrequired

Which mode to disconnect

Example Call

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "appBuilder_disconnectStripe",
    "arguments": {
          "projectId": "example",
          "mode": "example"
    }
  }
}
appBuilder_createStripeProduct

Create a new product with price in Stripe

Input Schema

projectIdstringrequired

Project ID

namestringrequired

Product name

descriptionstring

Product description

amountintegerrequired

Price amount in cents (e.g., 999 = $9.99)

currencystring

Currency code (default: usd)

intervalstring

Billing interval for subscriptions

intervalCountinteger

Number of intervals between billings

Example Call

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "appBuilder_createStripeProduct",
    "arguments": {
          "projectId": "example",
          "name": "example",
          "description": "example"
    }
  }
}
appBuilder_getGitConnection

Get Git connection status. Param "projectId". Returns: connected, repoOwner, repoName, branch, lastCommitSha, AI permission flags.

Input Schema

projectIdstringrequired

Example Call

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "appBuilder_getGitConnection",
    "arguments": {
          "projectId": "example"
    }
  }
}
appBuilder_connectGitHub

Connect a GitHub repository. Params: projectId (required), repoOwner (GitHub username or org), repoName (repo name), OR createNew (true) with newRepoName to create a new repo.

Input Schema

projectIdstringrequired
repoOwnerstring
repoNamestring
createNewboolean
newRepoNamestring

Example Call

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "appBuilder_connectGitHub",
    "arguments": {
          "projectId": "example",
          "repoOwner": "example",
          "repoName": "example"
    }
  }
}
appBuilder_disconnectGitHub

Disconnect GitHub from project. Param "projectId". Clears all Git settings and token.

Input Schema

projectIdstringrequired

Example Call

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "appBuilder_disconnectGitHub",
    "arguments": {
          "projectId": "example"
    }
  }
}
appBuilder_updateGitPermissions

Update AI Git permissions. Params: projectId (required), plus any of: - allowAiCommit: boolean - Allow AI to commit changes - allowAiPull: boolean - Allow AI to pull from remote - allowAiPush: boolean - Allow AI to push to remote - allowAiCreateBranch: boolean - Allow AI to create branches/repos

Input Schema

projectIdstringrequired
allowAiCommitboolean
allowAiPullboolean
allowAiPushboolean
allowAiCreateBranchboolean

Example Call

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "appBuilder_updateGitPermissions",
    "arguments": {
          "projectId": "example",
          "allowAiCommit": true,
          "allowAiPull": true
    }
  }
}
appBuilder_listGitHubRepos

List user GitHub repos for selection. Param "projectId". Returns array of {fullName, name, owner, private, defaultBranch}.

Input Schema

projectIdstringrequired

Example Call

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "appBuilder_listGitHubRepos",
    "arguments": {
          "projectId": "example"
    }
  }
}
appBuilder_gitPull

Pull latest changes from GitHub remote

Input Schema

projectIdstringrequired

Example Call

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "appBuilder_gitPull",
    "arguments": {
          "projectId": "example"
    }
  }
}
appBuilder_gitPush

Push commits to GitHub remote

Input Schema

projectIdstringrequired

Example Call

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "appBuilder_gitPush",
    "arguments": {
          "projectId": "example"
    }
  }
}
appBuilder_gitCommit

Create a new commit with current source files

Input Schema

projectIdstringrequired
messagestringrequired

Commit message

Example Call

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "appBuilder_gitCommit",
    "arguments": {
          "projectId": "example",
          "message": "example"
    }
  }
}
appBuilder_gitCreateBranch

Create a new branch from current HEAD

Input Schema

projectIdstringrequired
namestringrequired

New branch name

Example Call

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "appBuilder_gitCreateBranch",
    "arguments": {
          "projectId": "example",
          "name": "example"
    }
  }
}
appBuilder_gitSwitchBranch

Switch to an existing branch

Input Schema

projectIdstringrequired
namestringrequired

Branch name to switch to

Example Call

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "appBuilder_gitSwitchBranch",
    "arguments": {
          "projectId": "example",
          "name": "example"
    }
  }
}
appBuilder_gitMerge

Merge one branch into another

Input Schema

projectIdstringrequired
fromstringrequired

Source branch to merge from

tostringrequired

Target branch to merge into

Example Call

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "appBuilder_gitMerge",
    "arguments": {
          "projectId": "example",
          "from": "example",
          "to": "example"
    }
  }
}
appBuilder_gitListCommits

Get commit history

Input Schema

projectIdstringrequired
limitnumber

Maximum number of commits to return

Example Call

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "appBuilder_gitListCommits",
    "arguments": {
          "projectId": "example",
          "limit": 0
    }
  }
}
appBuilder_gitRollback

Restore project to a previous commit

Input Schema

projectIdstringrequired
shastringrequired

Commit SHA to rollback to

Example Call

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "appBuilder_gitRollback",
    "arguments": {
          "projectId": "example",
          "sha": "example"
    }
  }
}
appBuilder_gitStatus

Get current Git status

Input Schema

projectIdstringrequired

Example Call

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "appBuilder_gitStatus",
    "arguments": {
          "projectId": "example"
    }
  }
}
appBuilder_gitCreateRepo

Create a new GitHub repository

Input Schema

projectIdstringrequired
namestringrequired

Repository name

isPrivateboolean

Whether the repo should be private

Example Call

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "appBuilder_gitCreateRepo",
    "arguments": {
          "projectId": "example",
          "name": "example",
          "isPrivate": true
    }
  }
}
appBuilder_gitListBranches

List all branches in the repository

Input Schema

projectIdstringrequired

Example Call

{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "appBuilder_gitListBranches",
    "arguments": {
          "projectId": "example"
    }
  }
}
App Builder MCP Tools - Serenities