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-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
index.ts•641 B
/**
* @fileoverview Barrel file for the `echo` resource.
* This file serves as the public interface for the echo resource module,
* primarily exporting the `registerEchoResource` function. This function is
* responsible for registering the echo resource, including its templates and handler,
* with an MCP server instance. This makes the resource accessible to clients
* via defined URI patterns.
*
* Consuming modules should import from this barrel file to access
* the echo resource's registration capabilities.
* @module src/mcp-server/resources/echoResource/index
*/
export { registerEchoResource } from "./registration.js";