@noanswer/context-compose
Version:
Orchestrate complex AI interactions with Context Compose. A powerful CLI and server for building, validating, and managing context for large language models using the Model Context Protocol (MCP).
15 lines (14 loc) • 385 B
TypeScript
/**
* tools/index.ts
* Export all Hello MCP tools for MCP server
*/
import type { FastMCP } from 'fastmcp';
/**
* Register all Hello MCP tools with the MCP server
* @param server - FastMCP server instance
*/
export declare function registerAllTools(server: FastMCP): void;
declare const _default: {
registerHelloMCPTools: typeof registerAllTools;
};
export default _default;