Skip to main content

Overview

Once you have built and tested your Blueprint, you can deploy it and integrate it into your applications, workflows, and websites. Leapter handles the execution infrastructure โ€” you choose how to connect.

The Share menu

All deployment options start from the Share button in the Blueprint Editor toolbar. Click it to see the available options: The Share menu showing Connect, n8n, Code, Embed, and PNG options
OptionWhat it does
ConnectGet API endpoints for MCP or REST API integration
n8nExport ready-made n8n workflows (HTTP, Code, or MCP Agent)
CodeView your Blueprint as JavaScript or Python code
EmbedGet an HTML snippet to embed an interactive Blueprint viewer
PNGDownload a static image of your Blueprint

Deployment options

Connect via API

Leapter exposes your published Blueprints through two protocols:
  • AI Protocol (MCP) โ€” connect AI assistants and agents using the Model Context Protocol. Ideal for Claude Desktop, Cursor, and other MCP-compatible tools.
  • Web API (OpenAPI) โ€” call your Blueprints through a standard REST API from any application. Includes a full OpenAPI specification.
Both require an API key for authentication.

Export to n8n

Leapter can generate complete n8n workflows that you import directly into n8n:
  • HTTP Workflow โ€” calls your deployed Blueprint via HTTP API
  • Code Workflow โ€” runs your Blueprint logic directly as JavaScript inside n8n, with no external API calls
  • MCP Agent Workflow โ€” creates an AI agent that uses your Blueprints as tools

View as code

Export as Code shows your Blueprint logic transpiled to JavaScript or Python. Use it for code review, porting logic to other systems, or documentation.

Embed in websites

Embed in Websites gives you an HTML snippet with a web component that renders an interactive, read-only view of your Blueprint. No authentication required โ€” the Blueprint data is embedded directly in the code.

Monitor production runs

After you deploy a Blueprint, you can monitor its executions in the Prod Runs panel inside the Blueprint Editor. The Prod Runs panel showing a list of runs, with one expanded to show input data, output data, and a Replay button To open it, click Prod Runs in the right sidebar of the editor. Each run in the list shows:
  • Status โ€” whether the run succeeded or failed
  • Timestamp โ€” when the run occurred
  • Duration โ€” how long the execution took (e.g., 303ms)
  • Runtime โ€” which runtime executed the Blueprint (e.g., Script:Node.js)

Inspecting a run

Click on any run to expand it and see:
  • Input โ€” the exact data that was sent to the Blueprint
  • Output โ€” the result the Blueprint returned
  • Trace data โ€” the step-by-step execution path through your Blueprint

Replaying a run

Each expanded run has a Replay button. Clicking it re-executes the Blueprint with the same inputs as the original run. This is useful for debugging issues or verifying that a fix works correctly after you update your Blueprint.

Filtering runs

Use the filters at the top of the panel to narrow down the results:
  • Time โ€” filter by time range (e.g., Last 7 Days, Last 24 Hours)
  • Status โ€” show all runs or filter by success/failure
  • Search โ€” find a specific run by its correlation ID

What to do next