Skip to main content
Glama

Taiga MCP Server

by ssaurabh9
status.py579 B
"""Status models for user stories and tasks.""" from pydantic import BaseModel class StatusExtraInfo(BaseModel): """Status information embedded in other responses.""" name: str color: str is_closed: bool = False class UserStoryStatus(BaseModel): """User story status model.""" id: int name: str slug: str order: int is_closed: bool color: str project: int class TaskStatus(BaseModel): """Task status model.""" id: int name: str slug: str order: int is_closed: bool color: str project: int

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