Skip to main content

Welcome to Mentiora SDK

The Mentiora SDK provides official TypeScript and Python client libraries for integrating with the Mentiora platform.

What is Mentiora?

Mentiora is a platform for building, deploying, and observing AI agents. The SDK lets you:

  • Run Agents — Execute AI agents hosted on the platform, with support for streaming and multi-turn conversations
  • Trace — Send traces to the Mentiora platform for observability and debugging of your AI workflows
  • Auto-instrument — Automatically capture traces from OpenAI and LangChain with drop-in plugins
  • Stream to UIs — Use built-in SSE helpers to pipe agent responses to web frontends

Quick Start

pnpm add @mentiora.ai/sdk
import { MentioraClient } from '@mentiora.ai/sdk';

const client = new MentioraClient({
apiKey: process.env.MENTIORA_API_KEY,
});
First time?

Start with Authentication to get your API key, then follow the Quick Start guide.

What's in the SDK?

FeatureDescription
AgentsRun and stream AI agents hosted on the Mentiora platform
TracingSend traces for observability and debugging
PluginsAuto-trace OpenAI and LangChain calls with zero code changes
Streaming HelpersSSE utilities for piping agent responses to web frontends

Check out our example applications for complete, runnable code, or jump to the Usage guide.