trellis
Version:
Agentic State Engine — event-sourced causal graph with branching, decision traces, and realtime sync for AI-native applications
14 lines • 645 B
TypeScript
/**
* Agent Execution MCP — WorkerPool and DAGScheduler management tools.
*
* Mounted alongside the room MCP server. Maintains per-tenant WorkerPool
* and DAGScheduler singletons for persistent queue state across tool calls.
*
* @module trellis/mcp
*/
import type { McpServer } from '@modelcontextprotocol/sdk/server/mcp.js';
import type { TenantPool } from '../server/tenancy.js';
/** Reset all per-tenant pools and schedulers (for testing). */
export declare function resetAgentExecState(): void;
export declare function registerAgentExecTools(server: McpServer, tenantPool: TenantPool): void;
//# sourceMappingURL=agent-exec.d.ts.map