We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Seann0824/movies-search-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
BaseSource.ts•393 B
import { SearchQuery, SearchResult } from "../types";
export abstract class BaseSource {
abstract name: string;
/**
* Searches for content on the source website.
* @param query - The search query containing title, type, etc.
* @returns A promise that resolves to an array of found, validated search results.
*/
abstract find(query: SearchQuery): Promise<SearchResult[]>;
}