Overview
Volcano is a serverless backend platform with three core services — functions, databases, and authentication — unified behind one API.
Volcano is a serverless backend platform. It provides three core services: functions for running code, databases for storing data, and authentication for managing users. All services work together through a unified API.
How Volcano works
┌─────────────────────────────────────────────────────────────┐
│ Your Application │
│ (Web, Mobile, or Server) │
└─────────────────────────────────────────────────────────────┘
│
▼
┌─────────────────────────────────────────────────────────────┐
│ Volcano API │
├─────────────────┬──────────────────┬────────────────────────┤
│ Functions │ Databases │ Authentication │
│ (Serverless) │ (PostgreSQL) │ (JWT + Sessions) │
└─────────────────┴──────────────────┴────────────────────────┘Your application makes API calls to Volcano. Volcano manages the underlying infrastructure—serverless functions, PostgreSQL databases, and user sessions—so you can focus on building your product.
Core concepts
Projects
A project is a container for your application's resources. Each project has its own:
- Functions
- Databases
- Authentication configuration
- API keys
Most applications need one project. You might create multiple projects to separate environments (development, staging, production) or different applications.
Functions
Functions are serverless code that runs on demand. You write the code, upload it to Volcano, and invoke it via HTTP. Volcano handles provisioning, scaling, and execution.
Supported runtimes:
- Node.js (22.x, 24.x)
- Python (3.9, 3.10, 3.11, 3.12, 3.13)
- Ruby (3.2, 3.3, 3.4)
Functions can access databases, user context, and environment variables. They're useful for:
- API endpoints
- Background processing
- Scheduled tasks
- Webhooks
Databases
Databases are serverless PostgreSQL instances. They auto-scale based on usage and pause when idle to save costs.
You can access databases two ways:
- Query Builder / REST API — Make HTTP requests from browsers or servers
- Direct connection — Connect from your functions with standard PostgreSQL clients
Databases include built-in support for row-level security (RLS). Combined with authentication, you can write policies that automatically filter data based on the current user.
Authentication
Authentication lets your application's users sign up, sign in, and manage their accounts. It supports:
- Email and password
- OAuth providers (Google, GitHub, Microsoft, Apple)
- Anonymous users (for guest access)
When a user authenticates, they receive a JWT access token. This token can be used to:
- Invoke functions with user context
- Query databases with automatic RLS enforcement
- Access protected resources
API keys
Volcano uses different keys for different purposes:
| Key type | Purpose | Use in |
|---|---|---|
Platform token (pk-) | Manage every project in your account | Your terminal, backend, CI/CD |
Project access token (pt-) | Manage one project, with a read-only option | CI, scripts, AI agents |
| Anon key | Initialize the SDK, let users sign up and sign in | Frontend |
| Service key | Invoke functions as admin, bypass RLS | Backend only |
| User access token | Authenticate as a specific user | Frontend, functions |
Important: Never expose platform tokens, project access tokens, or service keys in frontend code. They act on your project rather than on behalf of one user, and belong only in environments you control.
For the full comparison, see Token types.
A typical workflow
- Create a project — Use your platform token to create a project via the API
- Deploy functions — Write code, package it, and upload to Volcano
- Provision a database — Create a PostgreSQL database for your data
- Configure authentication — Enable signup methods and create API keys
- Build your frontend — Use the SDK to authenticate users and invoke functions
- Set up RLS — Write policies to secure your data per user
Ways to use Volcano
Everything above is reachable five ways — the dashboard, the CLI, the SDKs, the REST API, and the MCP server — and they are all clients of the same API, so nothing is available through only one of them. See Ways to use Volcano for which to reach for.
What's next
| Guide | Description |
|---|---|
| Ways to use Volcano | Dashboard, CLI, SDK, API, and MCP — and when to use each |
| Quickstart | Deploy your first function in 5 minutes |
| Installation | Set up the SDK and CLI |
| Projects | Learn about project management |
| Functions | Deep dive into serverless functions |
| Databases | Learn about PostgreSQL databases |
| Authentication | Add user auth to your app |