We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/IBM/ibmi-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
index.ts•603 B
/**
* Tool Definitions Barrel Export
*
* Centralized export of all factory pattern tool definitions.
*
* @module tools/definitions
*/
import { executeSqlTool } from "./executeSql.tool.js";
import { generateSqlTool } from "./generateSql.tool.js";
/**
* Array of all tool definitions for automated registration.
*
* To add a new tool:
* 1. Create the tool definition file (e.g., myTool.tool.ts)
* 2. Import it above
* 3. Add it to this array
*
* The ToolRegistry will automatically register all tools in this array.
*/
export const allToolDefinitions = [executeSqlTool, generateSqlTool];