Documentation

Everything you need to build autonomous AI agent ecosystems with Mindra.

Quick Start

1. Install the SDK

npm install @mindra/sdk

2. Initialize

import { Mindra } from '@mindra/sdk';

const mindra = new Mindra({
  apiKey: process.env.MINDRA_API_KEY
});

3. Create an Agent

const agent = await mindra.agents.create({
  name: 'my-agent',
  capabilities: ['translation', 'analysis']
});

Resources