Skip to main content

Getting Started with MutagenT

Welcome to MutagenT! Follow these steps to start tracking and optimizing your LLM applications.

Prerequisites

  • Node.js 18+ or Bun runtime
  • A MutagenT account (or self-hosted instance)

Quick Setup

1

Install SDK

Install the MutagenT SDK in your project
bun add @mutagent/sdk
2

Create API Keys

Generate API keys from your MutagenT dashboard for authentication
3

Configure Client

Initialize the SDK with your API key
import { Mutagent } from '@mutagent/sdk';

const client = new Mutagent({
  bearerAuth: process.env.MUTAGENT_API_KEY,
});
4

Send Your First Trace

Create a prompt and start tracking

Next Steps