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•592 B
/**
* @fileoverview Barrel file for the `generate_sql` tool.
* This file serves as the public interface for the generate SQL tool module,
* primarily exporting the `registerGenerateSqlTool` function. This function is
* responsible for registering the generate SQL tool with an MCP server instance,
* making it available for invocation by clients.
*
* Consuming modules should import from this barrel file to access
* the generate SQL tool's registration capabilities.
* @module src/mcp-server/tools/generateSql/index
*/
export { registerGenerateSqlTool } from "./registration.js";