> For the complete documentation index, see [llms.txt](https://docs.tairon.ai/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.tairon.ai/tairon/getting-started.md).

# Getting Started

### Quick Start <a href="#quick-start" id="quick-start"></a>

Get up and running with Tairon in minutes:

***

#### **1. Browse the Supergraph** <a href="#id-1.-browse-the-directory" id="id-1.-browse-the-directory"></a>

Visit [tairon.ai ](http://tairon.ai/)to explore available MCP servers:

* **Browse by Category**: DeFi, Gaming, Data Processing, AI/ML
* **Filter by Transport**: HTTP, WebSocket, gRPC
* **Security Filters**: Audited servers, open source only
* **Performance Filters**: Uptime, response time, throughput

***

#### **2. Test Servers Live** <a href="#id-2.-test-servers-live" id="id-2.-test-servers-live"></a>

Use the built-in **Live Inspector** to test any server:

```bash
# No installation required - test directly in browser
# Visit: https://tairon.ai/servers/{server-id}/test

# Or use our CLI tool
npm install -g @tairon/cli
tairon test server-id --function getPrice --params '{"symbol":"ETH/USD"}'
```

***

#### **3. Integrate with Your App** <a href="#id-3.-integrate-with-your-app" id="id-3.-integrate-with-your-app"></a>

```javascript
// Install the SDK
npm install @tairon/sdk

// Quick integration
import { TaironClient } from '@tairon/sdk';

const client = new taironClient();
const server = await client.getServer('price-oracle-v1');
const result = await server.call('getPrice', { symbol: 'ETH/USD' });
```

***

#### Installation <a href="#installation" id="installation"></a>

**SDK Installation**

```bash
# NPM
npm install @tairon/sdk

# Yarn
yarn add @tairon/sdk

# PNPM
pnpm add @tairon/sdk

# Bun
bun add @tairon/sdk
```

***

#### **CLI Installation** <a href="#cli-installation" id="cli-installation"></a>

```bash
# Global installation
npm install -g @tairon/cli

# Verify installation
tairon --version
```

***

#### Authentication <a href="#authentication" id="authentication"></a>

Most operations are **public and free**. Premium features require an API key:

```bash
# Set up authentication
tairon auth login

# Or use environment variable
export TAIRON_API_KEY="your-api-key"
```
