Skip to main content
Glama

Google Maps MCP Server

by iceener
outputs.ts664 B
import { z } from 'zod'; // Health check tool output export const HealthOutput = z.object({ status: z.literal('ok'), timestamp: z.number(), uptime: z.number().optional(), }); export type HealthOutput = z.infer<typeof HealthOutput>; // Example API call tool output export const ExampleOutput = z.object({ query: z.string(), results: z.array(z.string()), count: z.number(), processed_at: z.string(), }); export type ExampleOutput = z.infer<typeof ExampleOutput>; // Echo tool output export const EchoOutput = z.object({ message: z.string(), repeated: z.number(), timestamp: z.string(), }); export type EchoOutput = z.infer<typeof EchoOutput>;

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/iceener/maps-streamable-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server