pet-adoption-mcp
Version:
A Model Context Protocol (MCP) server that helps users find adoptable pets through the Petfinder API
28 lines (27 loc) • 617 B
TypeScript
import { z } from "zod";
export declare const LocationSchema: z.ZodUnion<[z.ZodObject<{
city: z.ZodString;
state: z.ZodString;
}, "strip", z.ZodTypeAny, {
city: string;
state: string;
}, {
city: string;
state: string;
}>, z.ZodObject<{
latitude: z.ZodString;
longitude: z.ZodString;
}, "strip", z.ZodTypeAny, {
latitude: string;
longitude: string;
}, {
latitude: string;
longitude: string;
}>, z.ZodObject<{
zipcode: z.ZodString;
}, "strip", z.ZodTypeAny, {
zipcode: string;
}, {
zipcode: string;
}>]>;
export declare function startServer(): Promise<void>;