@brave/brave-search-mcp-server
Version:
MCP server for Brave Search. Uses the Brave Search API to return results from the web, including ranked links, images, and videos, as well as AI summaries of pages, rich results, and more.
8 lines (7 loc) • 307 B
JavaScript
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'),
});