← All integrations
// integration

Multi-agent teams on Anthropic Claude

Claude via the native Anthropic SDK — set one env var and name the model.

Enterprise support
01 setup

A minimal setup.

import { OpenMultiAgent, type AgentConfig } from '@open-multi-agent/core'

const agents: AgentConfig[] = [
  { name: 'researcher', systemPrompt: 'Gather the key facts.' },
  { name: 'writer', systemPrompt: 'Write a tight summary.' },
]

// Set ANTHROPIC_API_KEY in the environment.
const oma = new OpenMultiAgent({ defaultProvider: 'anthropic', defaultModel: 'claude-sonnet-4-6' })
const team = oma.createTeam('brief', { name: 'brief', agents })
const result = await oma.runTeam(team, 'Summarize the latest release notes.')
console.log(result.success)
02 how it fits

How it fits.

Anthropic is a built-in provider on the native Anthropic SDK. The agent config shape stays the same as every other provider — so you can give one agent Claude and another agent a different model, and they cooperate in a single run.

// Enterprise

Taking this to production?

open-multi-agent is MIT-licensed and free to run yourself. When you need it delivered, integrated, or supported on a deadline, 元定义科技 (YuanASI) offers commercial delivery and support.

Enterprise support