Skip to main content
Glama

Taiga MCP Server

by ssaurabh9
user_service.py521 B
"""User service for Taiga API operations.""" from app.core.client import TaigaClient from app.models.user import User class UserService: """Service for managing Taiga users.""" def __init__(self, client: TaigaClient) -> None: self.client = client async def get_current_user(self) -> User: """ Get current authenticated user's information. Returns: Current user details """ data = await self.client.get("/users/me") return User(**data)

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/ssaurabh9/taiga-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server