> ## Documentation Index
> Fetch the complete documentation index at: https://docs.cloudshipai.com/llms.txt
> Use this file to discover all available pages before exploring further.

# Platform Overview

> CloudShip AI platform for centralized Station management

## What is CloudShip Platform?

CloudShip Platform provides centralized management for your Station deployments:

<CardGroup cols={2}>
  <Card title="Station Registry" icon="server">
    Register and manage multiple Station instances from one dashboard
  </Card>

  <Card title="Bundle Distribution" icon="box">
    Create, share, and install agent bundles across your organization
  </Card>

  <Card title="Monitoring" icon="chart-line">
    Centralized telemetry, logging, and performance metrics
  </Card>

  <Card title="Authentication" icon="shield">
    OAuth-based authentication for secure MCP access
  </Card>
</CardGroup>

## Architecture

```mermaid theme={null}
graph TB
    subgraph "CloudShip Platform"
        Dashboard[Web Dashboard]
        Lighthouse[Lighthouse Service]
        Registry[Bundle Registry]
        Telemetry[Telemetry Collector]
    end
    
    subgraph "Customer Infrastructure"
        Station1[Station 1]
        Station2[Station 2]
        Station3[Station 3]
    end
    
    Station1 --> Lighthouse
    Station2 --> Lighthouse
    Station3 --> Lighthouse
    
    Lighthouse --> Dashboard
    Telemetry --> Dashboard
    Registry --> Dashboard
```

## Key Components

### Lighthouse

The Lighthouse service provides:

* **gRPC Communication** - Secure bidirectional streaming with Stations
* **Command Dispatch** - Remote agent execution
* **Status Monitoring** - Real-time Station health
* **Bundle Delivery** - Push bundles to registered Stations

### Bundle Registry

Store and distribute agent configurations:

* **Version Control** - Track bundle versions
* **Access Control** - Organization-level permissions
* **Cherry-Pick** - Select specific agents from bundles

### Dashboard

Web interface for:

* Station registration and management
* Bundle creation and distribution
* Agent execution and monitoring
* Team collaboration

## Getting Started

<Steps>
  <Step title="Create Account">
    Sign up at [app.cloudshipai.com](https://app.cloudshipai.com)
  </Step>

  <Step title="Create Organization">
    Set up your organization and invite team members
  </Step>

  <Step title="Get Registration Key">
    Generate a registration key for your Station
  </Step>

  <Step title="Register Station">
    Connect your Station using the registration key
  </Step>
</Steps>

## Pricing

| Plan           | Stations  | Features                            |
| -------------- | --------- | ----------------------------------- |
| **Free**       | 1         | Basic monitoring, public bundles    |
| **Team**       | 10        | Private bundles, team collaboration |
| **Enterprise** | Unlimited | SSO, audit logs, dedicated support  |

## Next Steps

<CardGroup cols={2}>
  <Card title="Registration" icon="key" href="/platform/registration">
    Register your Station with CloudShip
  </Card>

  <Card title="Bundles" icon="box" href="/platform/bundles">
    Learn about the bundle system
  </Card>
</CardGroup>
