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.
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.
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.
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.
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.
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.
{
"mcpServers": {
"velane": {
"url": "https://mcp.velane.sh/mcp",
"headers": {
"Authorization": "Bearer vl_xxxx"
}
}
}
}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 } }
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.
| Feature | DIY / Lambda | Pipedream | Velane |
|---|---|---|---|
| Agent-native via MCP | |||
| Zero OAuth setup | Partial | ||
| 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
For personal projects and exploration.
- 500 invocations / month
- Up to 5 workflows
- Shared runtime
- All 800+ integrations
- Community support
Hobby
For active builders and indie developers.
- 10,000 invocations / month
- Unlimited workflows
- Shared runtime
- All 800+ integrations
- Email support
- 30-day execution log history
Dedicated
For production workloads that need isolation and guarantees.
- Unlimited invocations
- Unlimited workflows
- Dedicated cluster
- All 800+ integrations
- Priority support
- Uptime SLA
- Custom domain
Self-host
Personal / Small Startup
Self-host the full stack under AGPL-3.0. Free forever for personal projects and startups building open-source products.
- 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
Self-host Velane in a proprietary product without the AGPL-3.0 copyleft requirement. Includes a commercial license for your entire organisation.
- 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.