Mixedbread Ts
Description
[>)](https://npmjs.org/package/@mixedbread/sdk) ](https://npmjs.org/package/@mixedbread/sdk) 
This library provides convenient access to the Mixedbread REST API from server-side TypeScript or JavaScript.
The REST API documentation can be found on [mixedbread.com](https://mixedbread.com/docs). The full API of this library can be found in [api.md](api.md).
It is generated with [Stainless](https://www.stainless.com/).
Installation
npm install @mixedbread/sdk
Usage
The full API of this library can be found in [api.md](api.md).
import Mixedbread from '@mixedbread/sdk';
const client = new Mixedbread({
apiKey: process.env['MXBAI_API_KEY'], // This is the default and can be omitted
environment: 'development', // or 'production' | 'local'; defaults to 'production'
});
const store = await client.stores.create();
console.log(store.id);
Request & Response types
This library includes TypeScript definitions for all request params and response fields. You may import and use them like so:
import Mixedbread from '@mixedbread/sdk';
const client = new Mixedbread({
apiKey: process.env['MXBAI_API_KEY'], // This is the default and can be omitted
environment: 'development', // or 'production' | 'local'; defaults to 'production'
});
const store: Mixedbread.Store = await client.stores.create();
Documentation for each method, request param, and response field are available in docstrings and will appear on hover in most modern editors.
File uploads
Request parameters that correspond to file uploads can be passed in many different forms:
File(or an object with the same structure)- a
fetchResponse(or an object with the same structure) - an
fs.ReadStream - the return value of our
toFilehelper
Related Skills
Auto Update
Pull the latest ECC repo changes and reinstall the current managed targets.
Development Ecc Guide
Navigate ECC's current agents, skills, commands, hooks, install profiles, and docs from the live repository su
Development Epic Claim
Claim an epic issue, stamp coordination state, and sync local ownership.
Development Epic Publish
Publish a validated epic update back to the issue and local cache.
Development Epic Review
Mark epic review requested, approved, or changes requested.
Development Epic Unblock
Sweep blocked epic issues and reopen anything whose dependencies are closed.
Development Related Agents
Django Build Resolver
Django/Python build, migration, and dependency error resolution specialist. Fixes pip/Poetry errors, migration
Openai Codex CLI
(55.8k ⭐) - Lightweight coding agent that runs in your terminal.
src/agents/ — 11 Agent Definitions
**Generated:** 2026-04-11