The AI automation platform —
one MCP URL,
any agent.
Copy the Aerostack MCP into Claude Code, Cursor, OpenClaw, CrewAI, or any MCP-compatible agent. Your agent gets 16 tools to build functions, deploy MCPs, create bots, compose workspaces, and wire up workflows — without ever leaving the conversation.
{
"mcpServers": {
"aerostack": {
"url": "https://mcp.aerostack.dev",
"headers": {
"Authorization": "Bearer your_api_key"
}
}
}
} That's it. Your agent now has full infrastructure access.
What is an AI automation platform?
An AI automation platform is infrastructure an agent controls directly — not a visual builder a human operates. Aerostack exposes 16 MCP tools so any LLM-based agent can build, deploy, and orchestrate edge functions, MCP servers, bots, and workflows from a single URL. No dashboard, no CLI, no deployment pipeline — one conversation, from idea to a live production URL.
The difference from a no-code tool is who does the work. A visual builder waits for a person to drag nodes onto a canvas. An agent automation platform hands the agent the same primitives a developer would use — create, deploy, test, validate — so it can compose real infrastructure on your behalf.
AI agent orchestration, not just task execution
Aerostack is an AI agent orchestration layer: agents coordinate across functions, bots, and MCP servers rather than running in isolation. One agent can scaffold a function, hand it to another agent to test, and publish the result to the marketplace for a third to discover — all within a single platform, without switching tools.
Everything your agent needs. Built in.
Your agent gets a complete infrastructure toolkit. No SDKs, no API docs, no boilerplate — just tool calls.
plan() Analyze any integration request — find MCPs, detect gaps, get a credential checklist
capabilities() Inspect any MCP or service — tools, auth requirements, schemas
guide() Context-aware help on setup, credentials, node types, platform config
sdk_docs() SDK reference and code patterns for building MCP servers or edge functions
scaffold() Describe what you want in plain English → get a ready-to-create config
create() Create bots, workflows, functions, endpoints, webhooks — code auto-deployed to edge
deploy() Push to live — register bot webhooks, activate workflows, push functions to 300+ cities
setup_integration() One call: create workspace, add MCPs, store encrypted secrets, verify health
generate_workflow() Auto-discover tools in workspace, build trigger → source → transform → destination graph
build_spec() Generate MCP server templates for any API — boilerplate, tool stubs, marketplace metadata
test() Test-run any resource with a payload — get per-node execution logs back
validate() Validate configs before deploying — catch disconnected nodes, missing fields, syntax errors
publish() Ship to the Aerostack marketplace — auto-checked for quality, discoverable by other agents
update() Partial updates to any resource — functions auto-redeploy on change
delete() Remove resources with reference checks so nothing breaks downstream
list() / get() List every resource in a workspace or get the full details of one
The edge functions your agent deploys are more than HTTP handlers. Each one gets a scoped Aerostack SDK, so a single function can query a database, send email, enqueue a job, and call an AI model — without leaving the worker.
sdk.db Query and write to a database
sdk.cache Read/write edge cache
sdk.queue Enqueue background jobs
sdk.ai Call AI models inline
sdk.email Send transactional email
sdk.storage Read/write object storage
sdk.secrets Access encrypted secrets
From idea to production. One conversation.
Your agent handles every step — from discovery to deployment. No dashboards, no config files, no manual wiring.
Describe what you need
Tell your agent in natural language. "Connect my Notion to Slack." "Build a support bot." "Deploy a webhook that enriches leads."
Agent plans the architecture
Searches the marketplace, detects gaps, identifies missing integrations, and returns a structured execution plan with credential requirements.
Agent builds what's missing
No MCP for the API you need? Agent generates one from scratch — boilerplate, tool stubs, tests. Deploys custom functions to the edge.
Agent composes & deploys
Creates workspace, adds MCPs, stores encrypted secrets, generates workflow, validates, tests, and pushes to live — all in one conversation.
You get a production URL
One workspace URL with everything composed. Share with your team, connect to other agents, or embed in your product.
Agents build infrastructure for other agents.
When an agent publishes a function or MCP server, it becomes discoverable by every other agent. The platform compounds — each thing one agent ships makes the next agent more capable.
Builds a lead-scoring edge function and publishes it to the marketplace
create() → publish() Discovers the published function via plan() and installs it into its workspace
plan() Wraps that function into a workflow that runs on a schedule
generate_workflow()
The same loop provisions runtimes: an agent can call create() to
spin up a persistent, managed agent that other agents — or you — can hand work to. No no-code tool-picker
exposes a build, publish, and discover loop like this.
Use in your code.
Already building with OpenAI, LangChain, or Vercel AI? Drop in our SDK — same workspace tools, native integration.
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_...',
});
// Tools auto-execute — no manual handling needed
const { text } = await generateText({
model: openai('gpt-4o'),
tools,
maxSteps: 5,
prompt: 'Deploy mcp-stripe and create a payment webhook',
}); No MCP? No problem. Agent builds it.
If an integration doesn't exist on the marketplace, your agent creates one on the fly. Build, deploy, and compose — all in the same conversation.
Post to Ocoya (social media)
auto-builtAgent generates MCP server → deploys → adds to workspace
Read from Airtable
on HubAgent finds mcp-airtable on Hub → installs → ready to use
Custom lead scoring logic
auto-builtAgent writes edge function → deploys → composes into workflow
Slack notifications
on HubAgent finds mcp-slack on Hub → installs with webhook URL
Internal company API
auto-builtAgent generates proxy MCP → wraps your API → encrypted secrets
Stripe payments
on HubAgent finds mcp-stripe on Hub → installs with API key
Giving agents infrastructure access? Control exactly which tools they can use. Block destructive operations at the platform level. Learn about MCP Security →
Give your agent
superpowers.
Get your API key, paste the MCP config, and your agent can build, deploy, and compose anything on Aerostack's infrastructure. Start free.
{
"mcpServers": {
"aerostack": {
"url": "https://mcp.aerostack.dev",
"headers": {
"Authorization": "Bearer YOUR_API_KEY"
}
}
}
} Related features