Skip to main content
From nothing to a typed package your application can call. Roughly ten minutes, most of it waiting on a browser tab.
This assumes you already have an Engine to talk to — hosted, or one you started yourself. If not, get one running first; every command below needs it.

Install

For automated or non-interactive installs, set ASSUME_YES=1 to skip the confirmation prompt.

Sign in

This opens your Engine’s sign-in page and saves a subject-scoped credential after you approve it. The credential never passes through the browser and is never printed.
On a headless machine, fused-cli login --no-browser prints the URL instead of trying to open one.

Enable a service

If nothing suitable comes back, import the API yourself — a spec, a GraphQL endpoint, or the provider’s documentation will do.

Store a credential

Values are rejected in argv, so pipe them. Secrets take effect immediately — there is nothing to apply.

Build an SDK

The first successful apply prints the SDK execution token once. Capture it now — a repeat apply will not show it again.

Call it

Three ways in. Same Engine execution behind all of them, and the same execution token.
A call returns { ok, status, data, error } rather than the payload itself, and services sit on the client in PascalCase with operations following the provider’s own grouping — so issueUpdate may be sdk.Linear.issues.update. Using it in your app covers the whole shape; your package’s generated README.md lists the exact paths for the operations you selected. Whichever one you used, the receipt is the same:
It shows what ran, how long the provider took, and what came back.

What you just did

Where to go next

Build an SDK properly

Multiple services, operation selection, and choosing an auth scheme.

Deploy an MCP server

The same approved operations, shaped for an agent.

Connect user accounts

OAuth per end user, with refresh handled by the Engine.

Share access

Give a team what it needs without giving it everything.

Prefer your coding agent to drive this?

The CLI ships skills that teach Claude Code, Codex, Cursor, Windsurf, and Antigravity the exact workflows above.

Taking this further

You have a working SDK on a Dev license. The tiers above it are about production licensing, SSO, and support — not about unlocking features you have just been using. When you need those, register interest and we’ll size it with you.