MCP is live.Set up
OmniDimension

Quickstart

Build with OmniDimension from an AI client, your backend, or the dashboard.

Pick how you want to build.

Your first request

Get an API key from the API management dashboard and set it as OMNIDIM_API_KEY (see Authentication). Then list the agents on your account:

npm install @omnidim-ai/sdk
import OmniDimension from '@omnidim-ai/sdk';

const client = new OmniDimension({ apiKey: process.env.OMNIDIM_API_KEY });
const agents = await client.agents.list();
console.log(agents);
pip install omnidimension
import os
from omnidimension import Client

client = Client(os.environ['OMNIDIM_API_KEY'])
print(client.agent.list())
curl https://backend.omnidim.io/api/v1/agents \
  -H "Authorization: Bearer $OMNIDIM_API_KEY"

A list of agents means your key works. An authentication error means the key is wrong or unset; check Authentication.

Next steps

On this page