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.
7 functions 6 read 1 write Bearer token auth
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.
Machine-Readable Metadata
- integration_slug
taiga- route_slug
taiga- package
taiga- auth_strategy
bearer_tokenBearer token- cli_setup_supported
true- cli_runtime_supported
true- mcp_gateway_supported
true- lua_supported
true- supports_multi_account
true
Quick Links
Lua APIAgent-facing namespace and function reference. Taiga CLIHeadless setup and direct function calls. Taiga MCPMCP gateway setup for external clients. Submit feedbackReport missing tools, auth problems, wrong docs, or runtime issues. ContributeAdd tools or improve metadata in the integrations repo.
Taiga MCP Client Matrix
Use these pages when a specific agent client or framework needs copy-pasteable MCP setup for Taiga.
Claude Code Taiga MCP setup for Claude Code. Cursor Taiga MCP setup for Cursor. Codex Taiga MCP setup for Codex. OpenAI Agents Taiga MCP setup for OpenAI Agents SDK. Claude Agent SDK Taiga MCP setup for Claude Agent SDK. Vercel AI SDK Taiga MCP setup for Vercel AI SDK. LangChain Taiga MCP setup for LangChain. LangGraph Taiga MCP setup for LangGraph. CrewAI Taiga MCP setup for CrewAI. MCP clients Taiga MCP setup for Generic MCP Clients.
Taiga CLI Matrix
Use these pages for direct Taiga CLI workflows in scripts, CI, cron, and agent wrappers.
CI Taiga CLI for CI. Cron Jobs Taiga CLI for cron jobs. Shell Scripts Taiga CLI for shell scripts. Headless Automation Taiga CLI for headless automation. Coding Agents Taiga CLI for coding agents.
Function Catalog
| Function | Type | Parameters | Description |
|---|---|---|---|
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. |