nexus-agents
Multi-agent orchestration framework with MCP server. Provides tools for orchestrating AI agents for complex software tasks.
import { createServer, startStdioServer, Orchestrator, createClaudeAdapter } from 'nexus-agents';// Start MCP serverconst result = await startStdioServer({ name: 'my-server', version: '1.0.0' });// Or use programmaticallyconst adapter = createClaudeAdapter({ model: 'claude-sonnet-4' });const orchestrator = new Orchestrator({ adapter }); Copy
import { createServer, startStdioServer, Orchestrator, createClaudeAdapter } from 'nexus-agents';// Start MCP serverconst result = await startStdioServer({ name: 'my-server', version: '1.0.0' });// Or use programmaticallyconst adapter = createClaudeAdapter({ model: 'claude-sonnet-4' });const orchestrator = new Orchestrator({ adapter });
nexus-agents
Multi-agent orchestration framework with MCP server. Provides tools for orchestrating AI agents for complex software tasks.
Example