@ryancardin/noaa-tides-currents-mcp-server
Version:
MCP Server that interfaces with NOAA Tides and Currents API using FastMCP
19 lines (18 loc) • 474 B
TypeScript
import { z } from 'zod';
export declare const ParameterSchema: z.ZodObject<{
parameter: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
parameter?: string | undefined;
}, {
parameter?: string | undefined;
}>;
export type GetParametersParams = z.infer<typeof ParameterSchema>;
export interface ParameterInfo {
id: string;
description: string;
}
export interface DateFormatInfo {
format: string;
description: string;
example: string;
}