UNPKG

@rockship/apollo-io-mcp

Version:

A powerful Model Context Protocol (MCP) server implementation for seamless Apollo.io API integration, enabling AI assistants to interact with Apollo.io data

13 lines 264 B
export class ToolRegistryService { tools = []; registerTool(tool) { this.tools.push(tool); } getTools() { return [...this.tools]; } clear() { this.tools = []; } } //# sourceMappingURL=tool-registry.service.js.map