Skip to content

Create a Workspace

Workspaces are created and managed through the Aerostack Admin dashboard or the CLI. This guide walks through both approaches.


  1. Open Workspaces

    Navigate to Workspaces in the left sidebar of the Aerostack Admin dashboard. You will see a list of your existing workspaces, or an empty state if this is your first.

  2. Click New Workspace

    Click the New Workspace button in the top-right corner. A creation form appears.

  3. Name Your Workspace

    Enter a name for your workspace (minimum 2 characters). The name should describe its purpose — for example, “Dev Tools”, “Support Bot Backend”, or “Client Acme”.

    A URL-safe slug is generated automatically from the name. The slug becomes part of your gateway URL and cannot be changed later.

  4. Add a Description (Optional)

    Provide a short description to help you and your team members identify what this workspace is for.

  5. Create

    Click Create. Your workspace is live immediately with a unique gateway URL.


Terminal window
aerostack workspace create "My Dev Tools"

The CLI outputs the workspace ID, slug, and gateway URL:

Workspace created:
ID: a1b2c3d4-...
Slug: my-dev-tools
Gateway: https://mcp.aerostack.dev/ws/my-dev-tools

You can also provide a description:

Terminal window
aerostack workspace create "My Dev Tools" --description "GitHub + Linear + Slack tools"

Once your workspace exists, the next steps are:

  1. Add tools — add MCP servers, skills, and functions to the workspace
  2. Create a token — generate a bearer token for authentication
  3. Connect a client — use the gateway URL in Claude Desktop, Cursor, or your app

A workspace with no tools is valid but not useful — it will return an empty tool list when queried.


The Workspaces page in the Admin dashboard shows all your workspaces with their server count, status, and gateway URL.

Terminal window
aerostack workspace list
SLUG NAME SERVERS
* personal Personal 2
work Work 5
client-acme Acme Corp 1

You can update the name and description of an existing workspace from the dashboard or CLI.

Open the workspace, click Settings, and edit the name or description.

Terminal window
aerostack workspace update my-dev-tools --name "Updated Name" --description "New description"

Deleting a workspace permanently removes all associated server links, tokens, secrets, and member access. This action cannot be undone.

Open the workspace, go to Settings, and click Delete Workspace. You will be asked to confirm.

Terminal window
aerostack workspace delete my-dev-tools

Each workspace has a settings panel in the dashboard where you can:

  • Rename the workspace
  • Update the description
  • View the gateway URL and slug
  • See the workspace creation date
  • Delete the workspace

The number of workspaces you can create depends on your plan:

PlanMax Workspaces
Free3
Starter10
Pro50
Business200
EnterpriseUnlimited

When you reach your limit, the dashboard shows a prompt to upgrade. The CLI returns an error with your current and maximum counts.


Create separate workspaces for development, staging, and production. Each can have different servers, secrets, and tokens.

dev-tools -- connected to test APIs
staging-tools -- connected to staging APIs
prod-tools -- connected to production APIs, restricted tokens

Give each team its own workspace with the tools they need:

engineering -- GitHub, Linear, CI/CD
support -- Zendesk, Notion, Slack
marketing -- Analytics, CMS, Social

Each bot connects to one workspace. Create a dedicated workspace for each bot so you can manage its tools independently:

support-bot -- Zendesk + Notion + knowledge base
sales-bot -- CRM + calendar + email
ops-bot -- monitoring + incident response