Fly integration
Fly.io transforms containers into micro-VMs that run on hardware in 30+ regions…
- Provider
- fly
- Category
- Other
- Setup
- User-supplied API key
- Actions
- 45 available
Quick start
Call Fly from your generated app's worker code via the OverSkill composio client. The toolkit slug below maps to Fly's public Composio identifier — your app references it by name and OverSkill handles the OAuth round-trip.
// In your generated app's worker handler:
const composio = composioClient(env);
const result = await composio.execute(
"FLY_ACTION_NAME",
{ /* action parameters — see Actions section below */ }
);
return new Response(JSON.stringify(result), {
headers: { "Content-Type": "application/json" }
});
Replace ACTION_NAME with one of the slugs listed in
the Actions section below. The composio client handles auth +
rate limits automatically — no API key is exposed to user code.
Setup
End-users supply their own Fly API key. OverSkill provides a pre-built connection form via the integration card — your app can call the composio client immediately once the user has connected.
Available actions
45 actions exposed via the
Fly integration. Each maps to a callable
slug — pass it to composio.execute(...) in your
worker code.
-
FLY_ADD_WIRE_GUARD_PEER -
FLY_CHECK_APP_NAME_AVAILABILITY -
FLY_CHECK_JOBS -
FLY_CHECK_USER_ONLY_TOKEN -
FLY_CREATE_CHECK_JOB -
FLY_CREATE_CHECK_JOB_RUN -
FLY_CREATE_DELEGATED_WIRE_GUARD_TOKEN -
FLY_CREATE_THIRD_PARTY_CONFIGURATION -
FLY_DELETE_DELEGATED_WIRE_GUARD_TOKEN -
FLY_DELETE_ORGANIZATION -
FLY_DELETE_REMOTE_BUILDER -
FLY_DELETE_THIRD_PARTY_CONFIGURATION
Show all 45 actions
-
FLY_DETACH_POSTGRES_CLUSTER -
FLY_ESTABLISH_SSH_KEY -
FLY_FETCH_NODES_BY_IDS -
FLY_GET_ADD_ON -
FLY_GET_ADD_ON_PROVIDER -
FLY_GET_APP_DETAILS -
FLY_GET_CERTIFICATE -
FLY_GET_CURRENT_TOKEN_INFO -
FLY_GET_LATEST_IMAGE_DETAILS -
FLY_GET_LATEST_IMAGE_TAG -
FLY_GET_MACHINE -
FLY_GET_NEAREST_REGION -
FLY_GET_NODE -
FLY_GET_ORGANIZATION -
FLY_GET_PERSONAL_ORGANIZATION -
FLY_GET_PLACEMENTS -
FLY_GET_PLATFORM_INFO -
FLY_GET_PRODUCTS -
FLY_GET_REGIONS -
FLY_GET_VIEWER_INFO -
FLY_ISSUE_CERTIFICATE -
FLY_LIST_ADD_ON_PLANS -
FLY_LIST_ADD_ONS -
FLY_LIST_APPS -
FLY_LIST_APPS_GRAPHQL -
FLY_LIST_CHECK_LOCATIONS -
FLY_LIST_MACHINES -
FLY_LIST_ORG_MACHINES -
FLY_REMOVE_WIRE_GUARD_PEER -
FLY_SET_APPS_V2_DEFAULT_ON -
FLY_UPDATE_THIRD_PARTY_CONFIGURATION -
FLY_VALIDATE_CONFIG -
FLY_VALIDATE_WIRE_GUARD_PEERS
Build with Fly
Open OverSkill, describe what you want to build, and reference Fly in your prompt — the AI will wire up the integration automatically.