Skip to main content
Glama

Taiga MCP Server

by ssaurabh9
user.py606 B
"""User models.""" from typing import Optional from pydantic import BaseModel, Field class UserExtraInfo(BaseModel): """User information embedded in other responses.""" username: str full_name: str = Field(alias="full_name_display") photo: Optional[str] = None class Config: populate_by_name = True class User(BaseModel): """Taiga user model.""" id: int username: str full_name: str email: str photo: Optional[str] = None is_active: bool = True bio: Optional[str] = None lang: Optional[str] = None timezone: Optional[str] = None

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