We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/apollographql/apollo-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
error.rs•373 B
use tantivy::TantivyError;
/// An error during indexing
#[derive(Debug, thiserror::Error)]
pub enum IndexingError {
#[error("Unable to index schema: {0}")]
TantivyError(#[from] TantivyError),
}
/// An error in a search operation
#[derive(Debug, thiserror::Error)]
pub enum SearchError {
#[error("Search error: {0}")]
TantivyError(#[from] TantivyError),
}