We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/PatrickSys/codebase-context'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
index.ts•307 B
/**
* Thrown when the LanceDB index is corrupted or has a schema mismatch.
* This error signals that re-indexing is required for semantic search to work.
*/
export class IndexCorruptedError extends Error {
constructor(message: string) {
super(message);
this.name = 'IndexCorruptedError';
}
}