Skip to content

Quick Start — MCP

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.


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

  1. Create a workspace

    Terminal window
    aerostack workspace create my-workspace
    # -> Gateway URL: https://gateway.aerostack.dev/ws/my-workspace/sse
    # -> Token: mwt_xxxxxxxx (save this)
  2. Browse and install an MCP server

    Terminal window
    # 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.

  3. Configure secrets (if required)

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

    Terminal window
    # -> This MCP server requires a GitHub token.
    # -> Enter GITHUB_TOKEN: ghp_...
    # -> Secret stored (AES-GCM encrypted). Injected automatically on every tool call.
  4. 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" }
    }
    }
    }
  5. 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


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: