We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/divar-ir/zoekt-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
models.py•231 B
from dataclasses import dataclass
from typing import List
@dataclass
class Match:
line_number: int
text: str
@dataclass
class FormattedResult:
filename: str
repository: str
matches: List[Match]
url: str