INDIVIDUAL MCP TOOL
flux_deploy_app
Validates the specification on a node, quotes it, and with confirm=true signs it with the Flux ID, broadcasts it and pays the quoted FLUX from the payment address.
LIVE ENDPOINT
https://mcp.runonflux.com/mcp
Connect to this endpoint to inspect the live schema for flux_deploy_app and invoke it with your own arguments.
Indexed input schema
{}Risk classification
Potential side effects detected · medium confidence · heuristic, not a guarantee.
- A tool name or description suggests a financial action.
Parent server
CONNECT WITH APPROVAL
Client installation
Review this server and its permissions before adding it. Secret placeholders must be set locally.
Codex
~/.codex/config.toml
[mcp_servers.flux-cloud]
url = "https://mcp.runonflux.com/mcp"
enabled = true
Claude Code
.mcp.json
{
"mcpServers": {
"flux-cloud": {
"type": "http",
"url": "https://mcp.runonflux.com/mcp"
}
}
}
Claude Desktop
Settings → Connectors → Add custom connector
Name: flux-cloud
Remote MCP URL: https://mcp.runonflux.com/mcp
Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.
Cursor
.cursor/mcp.json
{
"mcpServers": {
"flux-cloud": {
"url": "https://mcp.runonflux.com/mcp"
}
}
}
Visual Studio Code
.vscode/mcp.json
Add to Visual Studio Code{
"servers": {
"flux-cloud": {
"type": "http",
"url": "https://mcp.runonflux.com/mcp"
}
}
}
Generic MCP
Client-specific MCP configuration
{
"name": "flux-cloud",
"transport": "streamable-http",
"url": "https://mcp.runonflux.com/mcp"
}
MCP Inspector
Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.
Related tools
flux_get_identity— Returns the Flux ID (app owner address), the payment address and its spendable FLUX balance with its USD value.flux_generate_keys— Creates two fresh private keys (WIF): one for the Flux ID that will own apps, one for the address that pays.flux_get_pricing— Returns the current USD rate card, the live FLUX/USD rate, the pay-in-FLUX discount and instant USD estimates for a few reference sizes.flux_build_spec— Turns images, ports, resources and a term into a complete, correctly formatted v8 specification, with public ports auto-picked and data replication enabled.flux_validate_spec— Runs the local rule checks, then asks a FluxOS node to verify the specification exactly as it would at registration (image reachable, architecture, ports, name availability).flux_quote_app— Returns the Flux Cloud price for registering the given specification, or for updating it if an app of that name already exists (the unused part of the current term is credited).flux_wait_for_app— Polls the network for up to timeoutSeconds (default 45 to fit hosts with a 60 s tool timeout, max 600).flux_get_app— Looks up any app on the network by name and returns its published specification, expiry, running instances and URLs.