MCP ServersQuick Start

Quick Start

Choose the path that fits your situation. Each one gets you from zero to a working MCP server in your editor in under 5 minutes.


Choose Your Path

Best for: Getting started fast with popular integrations (GitHub, Stripe, Slack, Notion, etc.)

Create a workspace

aerostack workspace create my-workspace
# -> Gateway URL: https://gateway.aerostack.dev/ws/my-workspace/sse
# -> Token: mwt_xxxxxxxx (save this)

Browse and install an MCP server

# Search for what you need
aerostack mcp search "github"
 
# Install it
aerostack mcp install @aerostack/github-mcp
# -> github__create_issue, github__list_pull_requests, ... added to workspace

Or browse the Hub at aerostack.dev/hub and click Install.

Configure secrets (if required)

Some MCP servers need API keys. The CLI will prompt you:

# -> This MCP server requires a GitHub token.
# -> Enter GITHUB_TOKEN: ghp_...
# -> Secret stored (AES-GCM encrypted). Injected automatically on every tool call.

Add the gateway to your editor

Add to ~/.cursor/mcp.json:

{
  "mcpServers": {
    "my-workspace": {
      "url": "https://gateway.aerostack.dev/ws/my-workspace/sse",
      "headers": { "Authorization": "Bearer mwt_xxxxxxxx" }
    }
  }
}

Use it

Ask your AI assistant: “Create a GitHub issue titled ‘Fix login bug’ in my repo.”

The assistant calls github__create_issue through your workspace gateway. Done.

Next: Full Install from Hub guide


What Happens Next

Whichever path you chose, you now have:

  • A workspace gateway URL configured in your editor
  • One or more MCP servers connected
  • Tools available to your AI assistant

From here:

Every MCP server you add appears in your editor automatically. No config changes needed after initial setup.