We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/allenday/solr-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
"""SolrCloud client package."""
from solr_mcp.solr.client import SolrClient
from solr_mcp.solr.config import SolrConfig
from solr_mcp.solr.constants import FIELD_TYPE_MAPPING, SYNTHETIC_SORT_FIELDS
from solr_mcp.solr.exceptions import (
ConfigurationError,
ConnectionError,
QueryError,
SchemaError,
SolrError,
)
__all__ = [
"SolrConfig",
"SolrClient",
"SolrError",
"ConfigurationError",
"ConnectionError",
"QueryError",
"SchemaError",
"FIELD_TYPE_MAPPING",
"SYNTHETIC_SORT_FIELDS",
]