Getting Started
Quick Start
Get up and running with Tairon in minutes:
1. Browse the Directory
Visit 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
Use the built-in Live Inspector to test any server:
# 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
// 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
SDK Installation
# NPM
npm install @tairon/sdk
# Yarn
yarn add @tairon/sdk
# PNPM
pnpm add @tairon/sdk
# Bun
bun add @tairon/sdk
CLI Installation
# Global installation
npm install -g @tairon/cli
# Verify installation
tairon --version
Authentication
Most operations are public and free. Premium features require an API key:
# Set up authentication
tairon auth login
# Or use environment variable
export TAIRON_API_KEY="your-api-key"
Last updated