Docs

Remoco docs.

A neocloud for agents. Sixteen resource kinds, composed into stacks via blueprints, driven by humans through the console or by LLMs through MCP. This page is the table of contents.

Resource kinds

The control plane exposes one polymorphic surface, POST /v1/resources, that creates any of the sixteen kinds below. Each kind is a thin wrapper around a native cloud SDK; spec shapes are documented per-kind in the API reference.

KindBacked byUse
workstationCloud Workstationspersistent agent dev box (your shell, idle-suspended)
cloud-runCloud Runserverless HTTP endpoint for agent-shipped services
cloud-sqlCloud SQL Postgresmanaged Postgres instance, per-org
memorystoreMemorystore Redismanaged Redis for cache / pub-sub
bucketGCS (or S3)object storage for artifacts, datasets, checkpoints
secretSecret ManagerAPI keys, certs, credentials with versioned access
vmCompute Engineraw VM when you need a long-running daemon
k8sGKE Autopilotfull Kubernetes when serverless is the wrong shape
pubsubPub/Subtopic + subscription for event fan-out
tasksCloud TasksHTTP queue with rate limits and retries
scheduler-jobCloud Schedulercron in the cloud, hits any URL on a schedule
workflowRestatedurable, idempotent agent workflows with replay
vectorTurbopuffervector store for RAG, low-latency ANN
llmBasetenself-hosted model endpoints (open-weights)
networkVPC + Cloud NATprivate network for resources that need egress control
domainCloudflarecustom hostname → backend with cert + access policy

Stacks

A stack is a named bundle of resources rendered from a blueprint plus parameters. Three layers: blueprint (the recipe), stack (an instance owned by an org), resources (the children, dependency-ordered). Catalog blueprints today: rag-stack, agent-fleet, web-app. Deploy from the console Stacks tab or via POST /v1/stacks.

Quick jumps

For agents

The control plane is also exposed as MCP tools. Install @doss-labs/remoco-mcp and any LLM that speaks MCP can list resources, deploy stacks, invoke workflows, and read events directly. See the API reference for the equivalent REST surface.