Skip to main content
Glama

Yandex Tracker MCP

users.py581 B
from typing import Protocol from .common import YandexAuth from .types.users import User class UsersProtocol(Protocol): async def users_list( self, per_page: int = 50, page: int = 1, *, auth: YandexAuth | None = None ) -> list[User]: ... async def user_get( self, user_id: str, *, auth: YandexAuth | None = None ) -> User | None: ... async def user_get_current(self, *, auth: YandexAuth | None = None) -> User: ... class UsersProtocolWrap(UsersProtocol): def __init__(self, original: UsersProtocol): self._original = original

MCP directory API

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