We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/rustomax/observe-experimental-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•204 B
"""
PostgreSQL-based search operations
Provides BM25-based document search as an alternative to Pinecone vector search.
"""
from .doc_search import search_docs_bm25
__all__ = [
'search_docs_bm25'
]