agent-ecosystem/agent-teams-controller/src/index.js
iliya 822bbac23c feat(agent-teams): integrate MCP tool catalog and enhance tool registration
- Added mcpToolCatalog to the agent-teams-controller, exporting new types and constants for MCP tool groups and names.
- Updated tools registration to utilize AGENT_TEAMS_MCP_TOOL_GROUPS for streamlined tool management.
- Enhanced tests to validate the new operational permissions and ensure correct tool registration behavior.
2026-03-30 17:58:17 +03:00

7 lines
163 B
JavaScript

const controller = require('./controller.js');
const mcpToolCatalog = require('./mcpToolCatalog.js');
module.exports = {
...controller,
...mcpToolCatalog,
};