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

# TypeScript SDK Installation

> Get started with the Epistemic Me TypeScript SDK

## Installation

Install the Epistemic Me TypeScript SDK using npm:

```bash theme={null}
npm install @epistemicme/sdk
```

Or using yarn:

```bash theme={null}
yarn add @epistemicme/sdk
```

## Configuration

```typescript theme={null}
import { EpistemicMeClient } from '@epistemicme/sdk';

const client = new EpistemicMeClient({
  baseUrl: 'http://localhost:8080',
  apiKey: 'your-api-key'
});
```

## Requirements

* Node.js 14 or higher
* TypeScript 4.5 or higher
