We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/triptych/opera-omnia-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
data-fetcher.d.ts•870 B
import { DatasetItem, Manifest } from './types.js';
export declare class DataFetcher {
private cache;
private cacheData;
constructor();
/**
* Initialize the data fetcher by loading the manifest
*/
initialize(): Promise<void>;
/**
* Get the manifest file from GitHub or cache
*/
getManifest(): Promise<Manifest>;
/**
* Get a dataset from GitHub or cache
*/
getDataset(category: string, dataset: string): Promise<DatasetItem>;
/**
* Get all available categories
*/
getCategories(): Promise<{
name: string;
description: string;
}[]>;
/**
* Get all datasets in a category
*/
getDatasetsInCategory(category: string): Promise<{
name: string;
description: string;
}[]>;
/**
* Clear the cache
*/
clearCache(): void;
}