Skip to main content
Glama
launchframe-dev

LaunchFrame MCP

cli_docker_up

Start Docker services for LaunchFrame projects in the background. Use this tool to launch specific services or all services, then check logs for output.

Instructions

Start Docker services for a LaunchFrame project. Always runs detached (background). Use cli_docker_logs to inspect output afterward.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
projectPathYesAbsolute path to the LaunchFrame project root
serviceNoSpecific service to start (e.g., "backend", "admin-portal"). Omit to start all services.

Implementation Reference

  • Implementation and registration of the 'cli_docker_up' tool which executes the 'launchframe docker:up' command.
    server.tool(
      'cli_docker_up',
      'Start Docker services for a LaunchFrame project. Always runs detached (background). Use cli_docker_logs to inspect output afterward.',
      {
        projectPath: z.string().describe('Absolute path to the LaunchFrame project root'),
        service: z.string().optional().describe('Specific service to start (e.g., "backend", "admin-portal"). Omit to start all services.'),
      },
      async ({ projectPath, service }) => {
        try {
          const svc = service ? ` ${service}` : '';
          const output = execSync(`launchframe docker:up${svc} --detach`, { cwd: projectPath, encoding: 'utf8' });
          return { content: [{ type: 'text', text: output || 'Services started in detached mode.' }] };
        } 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