We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/aikts/yandex-tracker-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
errors.py•228 B
class YandexTrackerError(Exception):
pass
class IssueNotFound(YandexTrackerError):
def __init__(self, issue_id: str):
super().__init__(f"Issue with ID '{issue_id}' not found.")
self.issue_id = issue_id