Connect OpenClaw
Connect your OpenClaw agent to an Aerostack Workspace in under 2 minutes. Once connected, you can chat with your agent from the dashboard, approve tool calls, and monitor activity — all without Telegram or Discord.
Prerequisites
- An Aerostack account with at least one workspace (create one here)
- OpenClaw installed on your machine
- Your workspace has MCP servers, skills, or functions added
Setup
Copy Your Workspace URL and Token
- Open the Admin Dashboard
- Go to Workspaces and select your workspace
- Click Connect via Gateway tab
- Copy the Gateway URL — it looks like:
https://mcp.aerostack.dev/ws/your-workspace-slug - Go to the Tokens tab and copy your workspace token (starts with
mwt_)
Add Aerostack Bridge to OpenClaw
Open your OpenClaw MCP configuration and add the Aerostack Bridge:
{
"mcpServers": {
"aerostack": {
"command": "npx",
"args": ["-y", "@aerostack/gateway"],
"env": {
"AEROSTACK_WORKSPACE_URL": "https://mcp.aerostack.dev/ws/your-workspace-slug",
"AEROSTACK_TOKEN": "mwt_your_token_here"
}
}
}
}The @aerostack/gateway package is the Aerostack Bridge — it connects your agent to your workspace and enables Agent Chat, approvals, and activity monitoring.
Start OpenClaw
Launch OpenClaw as you normally would. The bridge connects automatically and registers with your workspace.
Open Agent Chat
Go back to the dashboard and click Agent Chat in the sidebar. You should see your agent listed as Connected. Click it to start a conversation.
Chat
Type a message and press Enter. Your agent receives it, uses your workspace tools, and responds. That is it — you are chatting with your agent from the dashboard.
Verify the Connection
If your agent does not appear as connected in the dashboard, use the Diagnose button in Agent Chat. It runs a step-by-step check:
- Is the bridge running?
- Can it reach your workspace?
- Is the token valid?
- Is the real-time connection established?
Fix any issues it reports, then refresh the page.
Also Works With Claude Code and Cursor
Add to ~/.claude/mcp.json:
{
"mcpServers": {
"aerostack": {
"command": "npx",
"args": ["-y", "@aerostack/gateway"],
"env": {
"AEROSTACK_WORKSPACE_URL": "https://mcp.aerostack.dev/ws/your-workspace-slug",
"AEROSTACK_TOKEN": "mwt_your_token_here"
}
}
}
}Keep your token secret. Your workspace token grants access to all tools in the workspace. Never commit it to version control. Use environment variables or a secrets manager.
What Happens After You Connect
Once your agent is connected through the bridge, you automatically get:
| Feature | Description |
|---|---|
| Agent Chat | Real-time messaging from the dashboard |
| Approvals | Approve or reject risky tool calls before they execute |
| Activity Monitor | See every action your agent takes, categorized by risk |
| Media Support | Send images and files to your agent through the chat |
| Team Access | Invite team members — each gets their own conversations |
No extra configuration needed. These features are built into the bridge.
Staying Connected
The bridge maintains a persistent connection to your workspace. If the connection drops (network issue, machine sleep), it automatically reconnects when your agent starts again.
For always-on connectivity, the bridge can run as a background service that stays connected even when you are not actively using your agent. This is useful for team setups where multiple people need to reach the agent at any time.
Next Steps
- Team Access — invite your team to chat with the agent
- Approvals — set up approval rules for risky actions
- Activity Monitor — monitor what your agent does
- Token Savings — understand why this costs less than Telegram