We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/nkapila6/mcp-local-rag'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""
Created on 2025-06-04 23:01:38 Wednesday
@author: Nikhil Kapila
"""
from typing import List, Dict
def sort_by_score(results: List[Dict]) -> List[Dict]:
"""Sort results by similarity score."""
return sorted(results, key=lambda x: x['score'], reverse=True)