UNPKG

kipu-mcp

Version:

Model Context Protocol (MCP) server for Kipu Healthcare API - Access patient records, vital signs, medications, appointments, and comprehensive healthcare data through AI assistants

26 lines (25 loc) 612 B
#!/usr/bin/env node /** * MCP Server generated from OpenAPI spec for kipu-mcp vV3 * Generated on: 2025-06-19T13:08:10.810Z */ /** * Server configuration */ export declare const SERVER_NAME = "kipu-mcp"; export declare const SERVER_VERSION = "V3"; export declare const API_BASE_URL = "https://api.kipuapi.com/api"; /** * Type definition for cached OAuth tokens */ interface TokenCacheEntry { token: string; expiresAt: number; } /** * Declare global __oauthTokenCache property for TypeScript */ declare global { var __oauthTokenCache: Record<string, TokenCacheEntry> | undefined; } export {};