We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/andnp/ragdocs-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
thresholding.py•166 B
from src.models import ChunkResult
def filter_by_score(results: list[ChunkResult], min_score: float = 0.3):
return [r for r in results if r.score >= min_score]