> ## Documentation Index
> Fetch the complete documentation index at: https://acm-aa28ebf6.mintlify.site/llms.txt
> Use this file to discover all available pages before exploring further.

# Welcome to SuperBox

> Discover, deploy, and test MCP servers with automated security and sandboxed execution

## What is SuperBox?

SuperBox is an **open marketplace** for Model Context Protocol (MCP) servers. Discover vetted MCP servers, run them in isolated Cloudflare Workers sandboxes, and connect them to your AI client in one command.

**Key features:**

* **Centralized registry** - one place to find and publish MCP servers
* **5-step security pipeline** - SonarCloud, tool discovery, Snyk, GitGuardian, and Bandit validation before any server enters the registry
* **Sandboxed execution** - Cloudflare Durable Objects isolate every session
* **One-command integration** - `superbox pull` writes the right config for your AI client

## Platform components

<CardGroup cols={3}>
  <Card title="Frontend" icon="browser" href="/frontend/overview">
    Next.js 16 + React 19
  </Card>

  <Card title="Backend" icon="server" href="/backend/overview">
    Go REST API + Python CLI
  </Card>

  <Card title="CLI" icon="terminal" href="/cli/introduction">
    Publish, test, and configure from the terminal
  </Card>
</CardGroup>

## Quick start

```bash theme={null}
# Install CLI
pip install superbox

# Authenticate
superbox auth login

# Initialize server metadata
superbox init

# Publish with security scan
superbox push

# Configure AI client
superbox pull --name my-mcp-server --client cursor
```

[Complete quickstart guide](/quickstart)

## Technology stack

<Tabs>
  <Tab title="Frontend">
    * Next.js 16 + React 19
    * TypeScript 5
    * Tailwind CSS 4
    * Framer Motion
  </Tab>

  <Tab title="Backend">
    * Go 1.26 (Gin)
    * Python 3.11 (CLI tool)
    * Cloudflare Workers + Durable Objects
    * Cloudflare R2
  </Tab>

  <Tab title="Security">
    * SonarCloud
    * Tool Discovery
    * Snyk
    * GitGuardian
    * Bandit
    * Firebase Auth
  </Tab>
</Tabs>

## Next steps

<CardGroup cols={3}>
  <Card title="Quickstart" icon="rocket" href="/quickstart">
    Get running in 5 minutes
  </Card>

  <Card title="Architecture" icon="sitemap" href="/architecture">
    How the system is built
  </Card>

  <Card title="API docs" icon="code" href="/api/introduction">
    REST API reference
  </Card>

  <Card title="CLI docs" icon="terminal" href="/cli/introduction">
    All CLI commands
  </Card>

  <Card title="MCP Servers" icon="server" href="/concepts/mcp-servers">
    Learn about MCPs
  </Card>

  <Card title="Security" icon="shield" href="/concepts/security">
    Security pipeline
  </Card>
</CardGroup>
