UNPKG

@aashari/boilerplate-mcp-server

Version:

TypeScript Model Context Protocol (MCP) server boilerplate providing IP lookup tools/resources. Includes CLI support and extensible structure for connecting AI systems (LLMs) to external data sources like ip-api.com. Ideal template for creating new MCP in

11 lines (10 loc) 266 B
import { Command } from 'commander'; /** * Register IP address CLI commands * @param program The Commander program instance */ declare function register(program: Command): void; declare const _default: { register: typeof register; }; export default _default;