- 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.
7 lines
163 B
JavaScript
7 lines
163 B
JavaScript
const controller = require('./controller.js');
|
|
const mcpToolCatalog = require('./mcpToolCatalog.js');
|
|
|
|
module.exports = {
|
|
...controller,
|
|
...mcpToolCatalog,
|
|
};
|