Quickstart
Build with OmniDimension from an AI client, your backend, or the dashboard.
Pick how you want to build.
Connect an AI client (MCP)
Use OmniDimension from Claude, Cursor, Windsurf, or any MCP client. No code.
TypeScript SDK
Call the API from a Node backend.
Python SDK
Call the API from Python.
REST API
Call the HTTP API directly.
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/sdkimport 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 omnidimensionimport 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.
