Cloud infrastructure for your agents and small apps

Deploy agents, APIs, and small software in your cloud with versioning, environments, secrets, secure zero-cold-start sandboxes, compliance controls, and 800+ integrations. Manage it all from Claude, Codex, or Cursor.

Agent
velane · MCP
Open source · AGPL-3.0800+ integrationsBun & Python runtimesIsolated sandbox per invocation3 environments: dev · staging · prod

Integrations

800+ tools. Zero tokens in your code.

Your agent discovers connected accounts and calls any API through Velane. No OAuth flows, no credentials, no glue code.

Salesforce logo
Salesforce
Zendesk logo
Zendesk
HubSpot logo
HubSpot
Stripe logo
Stripe
Notion logo
Notion
Slack logo
Slack
GitHub logo
GitHub
Linear logo
Linear

Who it's for

Built for agents and the software around them

Give autonomous agents and human developers the same secure cloud for building, running, and operating production code.

Agents and agent builders

Let agents write, test, debug, and publish real services without handing them a pile of cloud consoles. Velane provides the runtime, OAuth, environments, and deployment pipeline through MCP.

  • Ship production code in one agent conversation
  • No OAuth plumbing or credential management
  • Open source: self-host or use the hosted version
  • Sandboxed execution, no infra to manage

Small apps and internal tools

Deploy focused APIs, automations, webhooks, and internal tools without assembling a full cloud stack. Start small, connect to the services you use, and promote safely when you're ready.

  • Secure HTTP endpoints in Bun or Python
  • Sync, async, and streaming execution
  • Built-in logs, secrets, and version history
  • Development, staging, and production environments

How it works

Your IDE is now your deployment pipeline.

One MCP connection. Your agent handles the rest: writing, testing, and shipping production workflows autonomously.

Your Agent
Cursor · Claude Code
Velane MCP
mcp.velane.sh
Sandbox
Bun · Python
Integration
800+ APIs
1

Create & Connect

Your agent calls list_connections to discover your OAuth accounts, fetches live API docs for any provider, then writes Bun or Python code and saves it as a versioned workflow.

2

Run & Debug

The agent invokes the workflow on dev, reads execution logs with get_logs, and autonomously fixes errors without leaving the chat window. Each run is isolated in an ephemeral sandbox.

3

Promote

Once tests pass, the agent calls publish_snippet with env: "prod". Your workflow goes live at a stable HTTP endpoint, versioned, audited, and rollback-ready.

Setup

Two lines to connect. One handler to ship.

Add Velane to your MCP config, then your agent writes real Bun or Python code. No credentials in code. The proxy injects auth automatically.

mcp.json
{
  "mcpServers": {
    "velane": {
      "url": "https://mcp.velane.sh/mcp",
      "headers": {
        "Authorization": "Bearer vl_xxxx"
      }
    }
  }
}
stripe-to-hubspot.ts · agent-generated
import { integration } from '@velane/integrations'

export default async function handler({ customerId }) {
  const stripe  = integration('stripe')
  const hubspot = integration('hubspot')

  const customer = await stripe.get(`/v1/customers/${customerId}`)

  await hubspot.post('/crm/v3/objects/contacts', {
    properties: { email: customer.email },
  })

  return { synced: true }
}
800+
Integrations via Nango
2
Runtimes: Bun & Python
3
Environments: dev · staging · prod
AGPL
Open source licensed

Comparison

Why not just use...

Lambda gives you primitives. Pipedream focuses on workflows. Velane gives agents and small apps a complete path from code to a secure, observable production endpoint.

FeatureDIY / LambdaPipedreamVelane
Agent-native via MCP
Zero OAuth setupPartial
Isolated sandbox per invocation
Execution logs in your agent
Environment promotion (dev → prod)
Write code in your editor
Self-hostable

Pricing

Simple, predictable pricing

Start free on cloud or self-host under AGPL. Upgrade when you need more.

Cloud

Free

$0/ month

For personal projects and exploration.

Get started free
  • 500 invocations / month
  • Up to 5 workflows
  • Shared runtime
  • All 800+ integrations
  • Community support
Most popular

Hobby

$20/ month

For active builders and indie developers.

Start building
  • 10,000 invocations / month
  • Unlimited workflows
  • Shared runtime
  • All 800+ integrations
  • Email support
  • 30-day execution log history

Dedicated

$100/ month

For production workloads that need isolation and guarantees.

Get started
  • Unlimited invocations
  • Unlimited workflows
  • Dedicated cluster
  • All 800+ integrations
  • Priority support
  • Uptime SLA
  • Custom domain

Self-host

Personal / Small Startup

Free

Self-host the full stack under AGPL-3.0. Free forever for personal projects and startups building open-source products.

View on GitHub
  • Full source code access
  • Deploy on your own infra
  • OpenTofu configs for EKS included
  • Community support via GitHub Issues
  • AGPL-3.0: changes must stay open source

Commercial

Contact us

Self-host Velane in a proprietary product without the AGPL-3.0 copyleft requirement. Includes a commercial license for your entire organisation.

Contact for a license
  • Commercial license: no copyleft obligations
  • Self-host on your own infra
  • Full source code access
  • Priority email support
  • License covers your entire organisation

FAQ

Common questions

Your next agent or small app needs a cloud.

Connect your agent through MCP or deploy directly, then ship a secure production endpoint in minutes.