We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/mcp360/mcp360-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import { z } from 'zod';
import { GatewayClient } from '../gateway/client.js';
export declare const searchTool: {
name: string;
description: string;
inputSchema: z.ZodObject<{
query: z.ZodOptional<z.ZodString>;
}, "strip", z.ZodTypeAny, {
query?: string | undefined;
}, {
query?: string | undefined;
}>;
handler: (args: any, client: GatewayClient) => Promise<{
content: {
type: "text";
text: string;
}[];
isError?: undefined;
} | {
content: {
type: "text";
text: string;
}[];
isError: boolean;
}>;
};
//# sourceMappingURL=search.d.ts.map