Skip to main content
Glama
launchframe-dev

LaunchFrame MCP

cli_deploy_up

Deploy updated images to VPS and restart production services via SSH for LaunchFrame projects.

Instructions

Deploy the latest images to the VPS and restart all production services via SSH.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
projectPathYesAbsolute path to the LaunchFrame project root

Implementation Reference

  • Implementation of the cli_deploy_up tool which executes 'launchframe deploy:up' via execSync.
    server.tool(
      'cli_deploy_up',
      'Deploy the latest images to the VPS and restart all production services via SSH.',
      {
        projectPath: z.string().describe('Absolute path to the LaunchFrame project root'),
      },
      async ({ projectPath }) => {
        try {
          const output = execSync('launchframe deploy:up', { cwd: projectPath, encoding: 'utf8' });
          return { content: [{ type: 'text', text: output || 'Deployment complete.' }] };
        } catch (error: any) {
          return { content: [{ type: 'text', text: error.message }] };
        }
      }
    );

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/launchframe-dev/mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server