mcp-openweathermap
Version:
MCP server for OpenWeatherMap API integration
16 lines • 320 B
TypeScript
/**
* Session data structure for authenticated requests
*/
export interface SessionData {
apiKey: string;
authenticatedAt: Date;
}
/**
* Authentication result structure
*/
export interface AuthResult {
success: boolean;
session?: SessionData;
error?: string;
}
//# sourceMappingURL=types.d.ts.map