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

8 lines (7 loc) 288 B
import { IPDetail } from '../services/vendor.ip-api.com.types.js'; /** * Format IP address details into Markdown. * @param ipData - Raw IP details from the ip-api.com service. * @returns Formatted Markdown string. */ export declare function formatIpDetails(ipData: IPDetail): string;