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

# superbox inspect

> Open MCP server repository in browser

## Usage

```bash theme={null}
superbox inspect --name NAME
```

## Description

Open the repository URL for a registered MCP server in your default browser. Useful for viewing source code, documentation, and other repository details.

## Options

<ParamField path="--name" type="string" required>
  MCP server name to inspect
</ParamField>

## What It Does

<Steps>
  <Step title="Fetch from R2">
    Retrieves server metadata from R2 registry
  </Step>

  <Step title="Extract URL">
    Extracts repository URL from server metadata
  </Step>

  <Step title="Open Browser">
    Opens repository URL in default browser
  </Step>
</Steps>

## Example

```bash theme={null}
$ superbox inspect --name weather-mcp
Fetching server 'weather-mcp' from R2 registry...
Opening repository: https://github.com/user/weather-mcp
Done.
```

## Use Cases

<CardGroup cols={2}>
  <Card title="View Source" icon="code">
    Inspect server implementation
  </Card>

  <Card title="Read Docs" icon="book">
    Check repository README
  </Card>

  <Card title="Check Issues" icon="bug">
    View open issues
  </Card>

  <Card title="Fork" icon="code-fork">
    Fork for customization
  </Card>
</CardGroup>

## Next Steps

<CardGroup cols={2}>
  <Card title="Pull Config" icon="download" href="/cli/pull">
    Download configuration
  </Card>

  <Card title="Test Server" icon="flask" href="/cli/test">
    Test without publishing
  </Card>
</CardGroup>
