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
exceptions.py•354 B
"""Custom exceptions for the Zoekt MCP server."""
class ServerShutdownError(Exception):
"""Raised when server is shutting down and cannot process requests."""
pass
class SearchError(Exception):
"""Raised when search operation fails."""
pass
class ContentFetchError(Exception):
"""Raised when content fetching fails."""
pass