Aerostack
The AI Agent Platform for Developers

The full stack
for AI agents.

The AI agent platform that gives developers everything they need to build AI agents and ship AI-powered products: MCP server hosting, visual workflow builder, multi-channel bots, and a marketplace — all behind one workspace URL on Cloudflare's global edge.

Everything developers need to build AI agents — tools, workflows, bots, and edge infrastructure in one platform.

Agent Chat Agent Security Agent Automation MCP & Skills Workspaces Intelligent Bots Workflows

Agent Chat · MCP Security · Agent Automation · MCP Workspaces · Visual Workflows · Intelligent Bots · Edge Functions · Free to start

Claude
ChatGPT
Gemini
Cursor
VS Code
Windsurf
OpenAI SDK
LangChain
Vercel AI
CrewAI
LangGraph
// The Platform

Build. Compose. Deploy.

Four core building blocks that compose together. Each is powerful alone — together they are a complete AI backend.

Agent Automation

One MCP · Any agent

Copy one MCP URL into Claude Code, Cursor, or any AI agent. 16 tools to build, deploy, and compose your entire backend — without leaving the conversation.

16 tools: plan, scaffold, create, deploy, test, publish
Works with Claude Code, Cursor, OpenClaw, CrewAI
No MCP for an API? Agent builds one on the fly
Agent-to-agent: agents building tools for other agents
See what agents can build →

MCP Servers & Skills

Host · Proxy · Install

Host your own MCP servers, proxy existing ones through a zero-trust gateway, or install from the community Hub. Secrets stay encrypted — team members never see API keys.

Three modes: host, proxy, or install from Hub
AES-GCM encrypted secrets — team never sees keys
Per-user analytics on every tool call
Revoke one member without rotating production keys
Learn about MCP →

Workspaces

One URL · Many Services

Compose multiple MCP servers, skills, and functions behind a single gateway URL. Connect from Claude, ChatGPT, Cursor, Gemini, or any MCP client.

Single gateway URL for all your services
Tool namespacing prevents collisions
Per-member tokens with instant revocation
Works with any MCP-compatible AI client
Learn about Workspaces →

Intelligent Bots

5 platforms · Workflows · Handoffs

Not chatbots — AI agents that orchestrate your services. Visual workflows with identity verification, human approval handoffs, and bot-to-bot delegation across 5 platforms.

Agent loop or visual workflow — choose per bot
Built-in identity verification (OTP, magic links)
Human handoffs — pause, notify, approve, resume
Bot-to-bot delegation across workspaces
Learn about Bots →
// MCP Security

Your AI agent has root access. Fix that.

Today — Any MCP Client
All 7 tools exposed
query
list_tables
insert exposed
update exposed
delete exposed
drop_table exposed
execute exposed
Agent can DROP TABLE, DELETE, run anything
With Aerostack
2 of 7 tools allowed
query allowed
list_tables allowed
insert blocked
update blocked
delete blocked
drop_table blocked
execute blocked
Agent can only read — destructive tools are blocked
// Agent Chat NEW

Connect OpenClaw with your Workspace. Chat from dashboard or app.

Stop mixing everything in one Telegram thread. Separate conversations by topic, give your team access, and control what your agent can do — from anywhere.

Team Access

Marketing, DevOps, Dev — each person gets their own conversations with the agent. No cross-talk.

You Set the Rules

Define which tools and commands need your approval. Agent waits until you allow it — from dashboard or app.

Full Visibility

See every command, file write, and API call your agent makes. Real-time activity feed with risk levels.

// AI Assistant

Describe it. It builds it.

Tell the AI what you need in plain English. It creates the functions, deploys the MCPs, wires the workflow, and hands you a production URL. Done in minutes.

Creates what's missing

No MCP for your service? The AI writes and deploys a custom function on the spot.

Wires everything together

Workspace, workflow, secrets, bot config — all assembled and connected automatically.

Production in minutes

Not a prototype. A real, deployed, monitored service running on Cloudflare's edge.

Before
18 entries · 5 API keys · 2hrs to onboard
// mcp.json (before)
{
  "mcpServers": {
    "github": {
      "url": "https://github.mcp.io",
      "apiKey": "ghp_xxx"
    },
    "figma": {
      "url": "https://figma.mcp.io",
      "apiKey": "fig_xxx"
    },
    "postgres": {
      "url": "http://localhost:3001",
      "password": "pg_xxx"
    },
    "slack": {
      "url": "https://slack.mcp.io",
      "token": "xox_xxx"
    }
    // ... 14 more entries
  }
}
After
1 entry · 1 token · instant onboard
// mcp.json (after)
{
  "mcpServers": {
    "aerostack": {
      "url": "https://gateway.aerostack.dev/ws/acme"
    }
  }
}
47 tools8 sourcesauto-namespacedsecrets vaulted
// MCP Workspace Live

Your AI's toolbox.
Add tools. Get one URL.

Stop managing 20 separate configs. One workspace aggregates your MCP servers, skills, and functions behind one authenticated endpoint. Namespacing, secret vault, team access — automatic.

Auto-namespaced tools

Every tool prefixed with server slug. No conflicts between github-mcp__search and slack-mcp__search.

Secret vault built-in

Store API keys once in the workspace. Servers receive them at runtime — no key in mcp.json.

One authenticated endpoint

Single workspace token (mwt_...) authenticates all servers + skills in the workspace.

Team access in seconds

New team member? Share the workspace token. Instant access to all tools across all AI models.

// Architecture Live

Any AI model. One gateway.
Your private registry.

One workspace aggregates MCP servers, skills, and edge functions behind a single authenticated URL. Every AI model connects the same way.

MCP Servers

Community or self-hosted MCP servers. Any server added to your workspace is auto-namespaced — no tool name collisions.

Skills

Public, private, or team-scoped AI skills. Cross-model by default — one skill works with Claude, ChatGPT, and Gemini.

Edge Functions

Function-backed skills with dynamic TypeScript logic. Runs at 300+ locations globally. Sub-50ms everywhere.

// Any model

Six providers. One API.

Anthropic Claude

Opus, Sonnet, Haiku

OpenAI

GPT-4o, GPT-4, o1

Azure OpenAI

GPT-4o via Azure

Google Gemini

Flash, Pro

Groq

Llama 3, Mixtral

Workers AI

Open models at edge

BYOK — Zero Fees

Bring your own API key and pay zero platform markup. Keys are encrypted at rest.

Fallback Chains

If provider A fails, auto-route to provider B. Configure per status code.

Switch Without Redeploying

Change models per-bot, per-endpoint, per-gateway — independently. One field update.

// Integrations

Your stack. 250+ tools.

Drop Aerostack tools into your existing codebase. One workspace token gives any framework access to every MCP server, skill, and function you've connected.

app.ts
import { openai } from '@ai-sdk/openai';
import { generateText } from 'ai';
import { getTools } from '@aerostack/sdk-vercel-ai';

const { tools } = await getTools({
  workspace: 'my-workspace',
  token: 'mwt_...',
});

const { text } = await generateText({
  model: openai('gpt-4o'),
  tools,
  maxSteps: 5,
  prompt: 'Create a GitHub issue for the login bug',
});

250+ pre-built tools

GitHub, Slack, Notion, Stripe, and hundreds more — ready to use.

One workspace, any framework

Same tools work across OpenAI, LangChain, Vercel AI, and raw MCP.

Auto-executing tool calls

SDKs handle tool conversion, execution, and error recovery automatically.

// Agent Automation

One MCP URL. Any AI agent.

Copy the Aerostack MCP into Claude Code, Cursor, or any AI agent. 16 tools to build, deploy, and compose your entire backend — without leaving the conversation.

mcp-config.json — paste into any agent
{
  "mcpServers": {
    "aerostack": {
      "url": "https://mcp.aerostack.dev",
      "headers": {
        "Authorization": "Bearer your_key"
      }
    }
  }
}

Your agent instantly gets:

Build & deploy MCPs
Create bots on 5 platforms
Wire up workflows
Compose workspaces
Claude CodeCursorWindsurfOpenClawCrewAILangChainAny MCP Client
See what agents can build
// Free to Start

Generous free tier.
Open community. No credit card.

Every feature is available on every plan — usage-gated, not feature-gated. Start free, scale when ready. The CLI and SDKs are open-source and free forever.

2 Projects

Full backend — auth, database, cache, storage, real-time, background jobs.

50K Requests/mo

API calls, database reads, file transfers, and background jobs — all bundled.

3 Workspaces

MCP gateway, skills registry, observability — all included.

100K AI Tokens/mo

Vector search, embeddings, AI gateway — ready to use.

Unlimited bandwidth
No project pausing
Community marketplace — free to publish
CLI + SDKs open-source
No credit card required

From zero to deployed in seconds.

The Aerostack CLI + SDKs (Node.js, Go, Python, Flutter) are open-source and free.

Terminal
$

curl -fsSL https://get.aerostack.dev | sh

One-line install — works on macOS, Linux, and WSL

@aerostack/sdk

Node.js

aerostack-go

Go

aerostack-python

Python

aerostack-flutter

Flutter

Powered by Cloudflare

500+

Skills Published

120+

MCP Servers

1.2k+

Workspace Connections

3.8k+

Developers

Questions? We're here to help.

Whether you're exploring Aerostack or planning an enterprise deployment, our team is ready to chat.

The AI platform that
does it all.

Connect your tools. Deploy to any surface. Start free.

Frequently asked questions

What is Aerostack and what can I build with it? +

Aerostack is the AI agent platform for developers — a full-stack environment for building AI-powered products on Cloudflare's global edge. From one dashboard you can host MCP servers (the tool layer that AI agents call), write and deploy edge functions with built-in database, cache, AI, queue, and storage bindings, compose agentic workflows on a visual canvas with 19 node types, publish intelligent bots for WhatsApp, Telegram, Discord, and Slack, and package reusable logic as skills that any agent can invoke. Everything — infra, auth, multi-channel delivery, human approval — is handled by the platform so you ship products, not plumbing. Claude, Cursor, ChatGPT, Gemini, Claude Code, CrewAI, and LangChain all work with Aerostack out of the box.

What is an MCP server and why should I host one on Aerostack? +

An MCP server exposes tools — database queries, API calls, business logic — to AI agents in a standard protocol they already speak. When you host an MCP server on Aerostack, you get edge deployment on Cloudflare Workers (near-zero cold start, globally distributed), a managed authentication layer, and the ability to compose many MCP servers behind a single workspace URL so agents don't juggle credentials per server. You can publish a server to the Aerostack marketplace and earn 90 percent of subscription revenue, or keep it private inside your workspace. Any agent that supports MCP — Claude, Cursor, Claude Code, and others — can discover and call your tools immediately.

What is a workspace and how does it connect AI agents to multiple tools? +

A workspace is Aerostack's composition layer: it aggregates any number of MCP servers — yours, marketplace ones, or both — behind a single authenticated URL. An AI agent connects to that one URL and instantly has access to every tool across all the servers in the workspace, without you wiring separate integrations or managing credentials per connection. Workspaces also enforce human approval gates, so any tool call that crosses a policy line pauses and routes to a reviewer before executing. This is the surface Claude Code, Cursor, and other AI clients point at when they need real-world tool access. You can create multiple workspaces — one per project, team, or customer.

How do agentic workflows differ from n8n, Zapier, or standard automation tools? +

n8n and Zapier are deterministic pipeline builders: you hard-code a sequence of steps and they execute that sequence. Aerostack workflows are agentic — the LLM reasoning node is the decision-maker, choosing branches, calling tools dynamically from any MCP server in your workspace, and pausing for a human approval handoff when a step crosses a policy line. The 19 node types include identity verification, bot delegation, conditional splits, and subflows for reusable logic, all composable on a visual canvas with no YAML. If your automation has no reasoning step and no branching on model output — a fixed transform, a scheduled sync — a plain edge function is the right tool; reach for a workflow when you genuinely need an LLM in the loop.

What are skills, and how do they differ from MCP servers and edge functions? +

Edge functions are single-purpose serverless handlers with built-in database, cache, AI, queue, and storage bindings — the unit of raw logic on the platform. MCP servers bundle one or more of those functions into a tool layer that AI agents can call. Skills are higher-level reusable packages — pre-built capabilities like a booking flow, a summarization chain, or a lead-qualification sequence — that any agent or workflow can invoke without rebuilding the underlying logic. Think of it as three layers: functions handle computation, MCP servers expose functions as agent-callable tools, and skills compose tools into repeatable agent behaviors. Aerostack lets you publish skills to the marketplace and earn 90 percent of revenue when other developers adopt them.

How does multi-channel bot deployment work across WhatsApp, Telegram, Discord, and Slack? +

When you create a bot on Aerostack you configure it once — the agent logic, the tools it can call, the approval gates it respects — and deploy it across WhatsApp, Telegram, Discord, and Slack simultaneously. Each channel gets the same reasoning engine and workspace tool access; only the message formatting adapts per platform. Bots can delegate to each other: a WhatsApp bot can hand a sub-task to a Slack bot mid-conversation, then resume. The same agentic workflow engine powers both the bot logic and stand-alone workflow automations, so a human-approval handoff or a complex LLM-branching sequence works identically whether it is triggered by a chat message or a webhook.

What does the free tier include, and how does pricing work? +

The free tier includes 500K AI tokens per month plus access to all platform surfaces — MCP server hosting, edge functions, agentic workflows, bots, and workspaces. If you bring your own model key (BYOK) for Claude, OpenAI, or Gemini, the platform markup on AI calls drops to zero and the token meter reflects only what you consume at cost. Paid plans extend resource limits. For creators who publish MCP servers or skills to the Aerostack marketplace, the revenue share is 90 percent — the platform keeps 10 percent. There is no separate charge per channel for bots; WhatsApp, Telegram, Discord, and Slack all run under the same plan.

When is Aerostack not the right fit? +

Aerostack is a platform for building AI products — it is not a managed-OAuth glue layer like Composio, not a generic LLM gateway, and not a no-code automation builder for non-technical users. If you need a click-and-point tool to connect SaaS apps with no code, n8n or Zapier is likely a better match. If you only need to proxy model API calls without building anything on top, a standalone LLM gateway is simpler. Aerostack is the right choice when you are a developer who wants to ship an AI-powered product — something with real backend logic, multi-channel delivery, agent-callable tools, and agentic workflows — without assembling that stack from scratch. The more your product looks like an agent platform itself, the more value you get from Aerostack.