KosmoKrator

productivity

Taiga MCP, CLI, and Lua Integration for AI Agents

Taiga integration docs for AI agents: MCP gateway setup, Taiga CLI commands, Lua API reference, credentials, and function schemas.

Taiga for agents

Credentials can be configured manually in web or CLI hosts.

Use this integration from Lua code mode, the headless integrations CLI, or the KosmoKrator MCP gateway. The same package metadata powers all three surfaces.

Agent Surfaces

Machine-Readable Metadata

Function Catalog

FunctionTypeParametersDescription
taiga.taiga_list_projects Read read 5 List all Taiga projects you have access to. Returns project names, slugs, and descriptions that you can use to query user stories and issues.
taiga.taiga_get_project Read read 1 Get detailed information about a specific Taiga project by its ID. Returns project name, slug, description, statuses, and membership details.
taiga.taiga_list_user_stories Read read 9 List user stories from Taiga. Filter by project, status, milestone, or assignee. Returns story subjects, descriptions, and statuses.
taiga.taiga_get_user_story Read read 1 Get detailed information about a specific Taiga user story by its ID. Returns the full story with subject, description, status, assignee, and points.
taiga.taiga_create_user_story Write write 8 Create a new user story in a Taiga project. Requires project ID and subject. Optionally include description, tags, status, and assignee.
taiga.taiga_list_issues Read read 10 List issues from Taiga. Filter by project, status, priority, severity, or assignee. Returns issue subjects, descriptions, and statuses.
taiga.taiga_get_current_user Read read 0 Get the currently authenticated Taiga user profile. Returns user details like full name, username, and email.