We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/brave/brave-search-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
params.ts•448 B
import { z } from 'zod';
export const LocalPoisParams = z.object({
ids: z.array(z.string()).describe('List of location IDs for which to fetch POIs'),
});
export const LocalDescriptionsParams = z.object({
ids: z.array(z.string()).describe('List of location IDs for which to fetch descriptions'),
});
export type LocalPoisParams = z.infer<typeof LocalPoisParams>;
export type LocalDescriptionsParams = z.infer<typeof LocalDescriptionsParams>;