Manufact MCP server

Manage Manufact Cloud from any AI client. Deploy, debug, and monitor your servers through MCP.

Manufact Cloud is itself controllable over MCP. The official Manufact Cloud MCP server exposes the platform, organizations, servers, deployments, logs, and observability, as MCP tools, so you can manage everything from Cursor, Claude, or any other MCP client.

https://mcp.manufact.com/mcp

Connecting

Add the server to your client with the standard remote MCP configuration:

{
  "mcpServers": {
    "manufact-cloud": {
      "url": "https://mcp.manufact.com/mcp"
    }
  }
}

The transport is Streamable HTTP. Authentication uses OAuth: on first connection your client runs the standard MCP OAuth flow and you log in with your Manufact Cloud account. Tools then act with your own permissions, the same role-based access you have in the dashboard.

What you can do

Example prompts
Deploy"Deploy this repo to Manufact Cloud", "Redeploy my-server from the main branch"
Debug"Why did the latest deployment of my-server fail?", "Show runtime logs filtered for errors"
Monitor"How much traffic did my-server get this week?", "Which clients call it most?"
Configure"Change the start command and redeploy", "Is my custom domain verified?"
Team"Invite jane@example.com to my org as admin"

Each of the 20 tools has its own reference page in the sidebar, grouped by area. Start with list_organizations, the entry point for every session.

Design

The server follows a composable, minimal-tool design: each tool returns a narrow, allowlisted projection, and IDs chain across tools.

list_organizations → organizationId
  → list_servers → serverId
    → list_deployments → deploymentId
      → get_deployment_runtime_logs

Agents are expected to chain these small calls rather than receive one giant response. A manufact://info resource describes the catalog and this flow, so agents can orient themselves.

Widgets

The four analytics tools render interactive widgets (charts and tables) in clients that support MCP Apps, gateway metrics, event streams, client breakdowns, and tool breakdowns appear as live UI instead of raw JSON.

Built with mcp-use

The server is built with the mcp-use framework and hosted on Manufact Cloud itself, the same workflow described in the Dashboard docs and deployable with the CLI.

On this page