We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/domdomegg/google-maps-places-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
index.ts•440 B
import type {McpServer} from '@modelcontextprotocol/sdk/server/mcp.js';
import type {Config} from './types.js';
import {registerPlacesTextSearch} from './places-text-search.js';
import {registerPlacesPhotoGet} from './places-photo-get.js';
export type {Config} from './types.js';
export function registerAll(server: McpServer, config: Config): void {
registerPlacesTextSearch(server, config);
registerPlacesPhotoGet(server, config);
}