# 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"
```


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.tairon.ai/tairon/getting-started.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
