Cloud Deploy Pack

Trustedv1.0.0MITVerified88

by AgentNode · published 22 days ago · toolpack

Deploy applications to Vercel, Railway, Fly.io, and Render.

One-command deployment to popular cloud platforms. Supports static sites, Node.js, Python, and Docker-based deployments with environment variable management.

langchaincrewaigeneric

Quick Start

bash
agentnode install cloud-deploy-pack

Usage

From package
python
from cloud_deploy_pack.tool import run

result = run(
    capability="deploy_app",
    params={
        "platform": "vercel",
        "project_dir": "./my-nextjs-app",
        "project_name": "my-nextjs-app",
        "environment": "production",
        "env_vars": {
            "DATABASE_URL": "postgres://...",
            "NEXT_PUBLIC_API_URL": "https://api.example.com"
        }
    }
)

print(f"Deployment ID: {result['deployment_id']}")
print(f"URL: {result['url']}")
print(f"Status: {result['status']}")
print(f"Ready in: {result['ready_seconds']}s")

Environment Variables

VERCEL_TOKEN

Vercel personal access token. Required when deploying to Vercel.

RAILWAY_TOKEN

Railway API token. Required when deploying to Railway.

FLY_API_TOKEN

Fly.io authentication token. Required when deploying to Fly.io.

RENDER_API_KEY

Render API key. Required when deploying to Render.

Verification

high confidence88/100✔ Verified
smokeReturned valid result
+25/25
testsAuto-generated tests only
+8/15
importAll tools imported successfully
+15/15
installInstalled in 1.9s
+15/15
contractAll contract checks passed
+10/10
warningsNo warnings
0/0
determinismOutput consistency check
+5/5
reliability3/3 runs passed
+10/10

Package installs and imports correctly. runtime checks passed.

install1.9s
import270ms
smoke192ms
tests1.6s

This package was executed and validated by AgentNode before listing. Install, import, and runtime checks passed.

Python 3.12.3ffmpegpopplertesseractuv

Last verified 18d ago· Runner v2.0.0

Use this when you need to...

  • Deploy a Next.js app to Vercel from source
  • Push a Docker container to Railway
  • Deploy a Python API to Fly.io globally
  • Roll back a failed deployment to the previous version
  • Check deployment status and live URLs

README

Cloud Deploy Pack

Deploy applications to Vercel, Railway, Fly.io, and Render from your workspace. Supports environment variables, region selection, scaling, and rollbacks.

Quick Start

agentnode install cloud-deploy-pack
from cloud_deploy_pack.tool import run

result = run(
    capability="deploy_app",
    params={
        "platform": "vercel",
        "project_dir": "./my-app",
        "project_name": "my-app"
    }
)
print(f"Live at: {result['url']}")

Usage

Deploy to Vercel with env vars

result = run(
    capability="deploy_app",
    params={
        "platform": "vercel",
        "project_dir": "./frontend",
        "project_name": "my-frontend",
        "environment": "production",
        "env_vars": {"API_URL": "https://api.example.com"}
    }
)
print(result["url"])

Deploy to Fly.io across multiple regions

result = run(
    capability="deploy_app",
    params={
        "platform": "fly",
        "project_dir": "./backend",
        "app_name": "my-api",
        "regions": ["iad", "ams"],
        "auto_scale": {"min": 1, "max": 5}
    }
)

Rollback a deployment

result = run(
    capability="deploy_app",
    params={
        "platform": "vercel",
        "action": "rollback",
        "project_name": "my-frontend",
        "deployment_id": "dpl_abc123"
    }
)
print(f"Rolled back to: {result['url']}")

API Reference

CapabilityDescription
deploy_appDeploy, manage, and roll back application deployments

Platforms: vercel, railway, fly, render.

Actions: deploy (default), rollback, status, logs.

Returns: deployment_id, url, status, regions, ready_seconds.

Requirements

VariableRequiredDescription
VERCEL_TOKENFor VercelVercel personal access token
RAILWAY_TOKENFor RailwayRailway API token
FLY_API_TOKENFor Fly.ioFly.io auth token
RENDER_API_KEYFor RenderRender API key

Set the token for the platform you intend to deploy to.

License

MIT

Version History

Capabilities

cloud_deploymentdeploy_apptool

Permissions

This package declares the following access levels. Review before installing.

Networkunrestricted
Filesystemworkspace_read
Code Executionlimited_subprocess
Data Accessconnected_accounts
User Approvalalways
bash
agentnode install cloud-deploy-pack

Environment Variables

VERCEL_TOKEN
RAILWAY_TOKEN
FLY_API_TOKEN
RENDER_API_KEY

Files (3)

License

MIT

Stats

Downloads0
Installs0
Versionv1.0.0
Published3/16/2026
Channelstable
Typetoolpack
Entrypointcloud_deploy_pack.tool

Compatibility

Frameworks

langchaincrewaigeneric

Runtime

python

Python Version

>=3.10

Trust & Security

PublisherTrusted
SignatureNone
ProvenanceNone
Security Issues0

Publisher

A

AgentNode

@agentnode