Skip to content

Install from Hub

The Aerostack Hub hosts 30+ community MCP servers — GitHub, Stripe, Slack, Notion, Linear, Sentry, and more. Install any of them into your workspace with one command. They run on Cloudflare edge via service bindings, so there is no server for you to manage.


  1. An Aerostack account at aerostack.dev
  2. The Aerostack CLI installed and authenticated
  3. A workspace created (see Quick Start)

Browse the full catalog at aerostack.dev/hub. Each listing shows:

  • Server name and description
  • Available tools (e.g., create_issue, list_pull_requests)
  • Required secrets (e.g., GITHUB_TOKEN)
  • Install count and rating

Click Install to add it to your workspace from the web.


  1. Choose and install

    Terminal window
    aerostack mcp install @aerostack/github-mcp

    If you have multiple workspaces, specify which one:

    Terminal window
    aerostack mcp install @aerostack/github-mcp --workspace my-workspace
  2. Configure required secrets

    Most MCP servers need API credentials. The CLI prompts you interactively:

    Terminal window
    # -> @aerostack/github-mcp requires the following secrets:
    # -> GITHUB_TOKEN: A GitHub personal access token with repo scope
    # -> Enter GITHUB_TOKEN: ghp_xxxxxxxxxxxx
    # -> Secret stored (AES-GCM encrypted in your workspace).

    You can also set secrets non-interactively:

    Terminal window
    aerostack secrets set github-mcp GITHUB_TOKEN "ghp_xxxxxxxxxxxx"
  3. Verify the installation

    Terminal window
    aerostack mcp list
    # Workspace: my-workspace
    # -------------------------------------------------
    # @aerostack/github-mcp v2.1.0 github__create_issue, github__list_pull_requests, ...
    # @aerostack/slack-mcp v1.4.2 slack__send_message, slack__create_channel, ...

    The tools are now available through your workspace gateway URL. No editor config change needed.


A selection of popular servers on the Hub:

ServerToolsRequired Secrets
@aerostack/github-mcpIssues, PRs, repos, actions, searchGITHUB_TOKEN
@aerostack/stripe-mcpCustomers, charges, subscriptions, invoicesSTRIPE_API_KEY
@aerostack/slack-mcpMessages, channels, users, reactionsSLACK_BOT_TOKEN
@aerostack/notion-mcpPages, databases, blocks, searchNOTION_API_KEY
@aerostack/linear-mcpIssues, projects, cycles, teamsLINEAR_API_KEY
@aerostack/sentry-mcpIssues, events, releases, projectsSENTRY_AUTH_TOKEN
@aerostack/cloudflare-mcpWorkers, databases, cache, storage, DNSCF_API_TOKEN
@aerostack/postgres-mcpSQL queries against any Postgres databaseDATABASE_URL
@aerostack/resend-mcpSend and manage emailsRESEND_API_KEY

Browse the full list at aerostack.dev/hub.


Terminal window
# Update a specific server
aerostack mcp update @aerostack/github-mcp
# Update all servers in your workspace
aerostack mcp update --all
Terminal window
aerostack mcp remove @aerostack/github-mcp
# -> Removed github__create_issue, github__list_pull_requests, ... from workspace

Removing a server also removes its secrets from your workspace.

Terminal window
# Rotate an API key
aerostack secrets set github-mcp GITHUB_TOKEN "ghp_new_token_here"
# -> Secret updated. Takes effect on next tool call.

When you install from the Hub, the MCP server runs on Cloudflare edge via service bindings. The flow:

External API(github.com)Hub MCP Server(Cloudflare Edge)Workspace GatewayAI Client (Cursor)External API(github.com)Hub MCP Server(Cloudflare Edge)Workspace GatewayAI Client (Cursor)Authenticate workspace tokenDecrypt secrets (AES-GCM)Log analytics (user, tool, timestamp)tools/call github__create_issueForward request + injected secretsPOST /repos/owner/repo/issuesAuthorization: Bearer ghp_...201 Created{ content: [{ type: "text", text: "IssueTool result

Key points:

  • The MCP server runs on Cloudflare edge — no cold starts, globally distributed
  • Your API key is decrypted and injected by the gateway, not stored in the MCP server itself
  • Every call is logged with the workspace token identity for analytics

You can also install MCP servers from the web:

  1. Go to the Admin dashboard

    Navigate to MCP Servers in the left sidebar.

  2. Click “Browse Hub”

    This opens the Hub catalog within the dashboard.

  3. Click “Install” on the server you want

    The dashboard prompts you for any required secrets.

  4. Enter secrets and confirm

    The server appears in your workspace immediately.


Your workspace gateway includes a built-in find_skill meta-tool. Your AI assistant can discover and suggest new MCP servers mid-conversation:

You: "I need to check our Sentry errors."
Agent: I found @aerostack/sentry-mcp on the Hub. Want me to install it?
You: "Yes."
Agent: Installed. Fetching your recent Sentry issues now...