UNPKG

@shopana/novaposhta-mcp-server

Version:

MCP Server for Nova Poshta API integration with AI assistants

16 lines 641 B
import type { AddressService, ReferenceService, TrackingService, WaybillService, CounterpartyService, ContactPersonService } from '@shopana/novaposhta-api-client'; import type { ServerConfig } from '../config.js'; export interface NovaPoshtaClient { address: AddressService; reference: ReferenceService; tracking: TrackingService; waybill: WaybillService; counterparty: CounterpartyService; contactPerson: ContactPersonService; } export type ToolArguments = Record<string, unknown> | undefined; export interface ToolContext { client: NovaPoshtaClient; config: ServerConfig; } //# sourceMappingURL=mcp.d.ts.map