productivity
MeisterTask MCP, CLI, and Lua Integration for AI Agents
MeisterTask integration docs for AI agents: MCP gateway setup, MeisterTask CLI commands, Lua API reference, credentials, and function schemas.MeisterTask 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
| Function | Type | Parameters | Description |
|---|---|---|---|
meistertask.meistertask_list_projects | Read read | 0 | List all MeisterTask projects the authenticated user has access to. Returns project IDs, names, and basic metadata. |
meistertask.meistertask_get_project | Read read | 1 | Get detailed information about a specific MeisterTask project, including sections, members, and status. |
meistertask.meistertask_create_task | Write write | 9 | Create a new task in a MeisterTask project. You must specify the project and at least a task name. Optionally set status, assignee, due date, description, and more. |
meistertask.meistertask_list_tasks | Read read | 5 | List tasks across MeisterTask projects with optional filters. Supports filtering by project, status, assignee, and more. |
meistertask.meistertask_get_task | Read read | 1 | Get detailed information about a specific MeisterTask task, including its description, status, assignee, due date, and attachments. |
meistertask.meistertask_update_task | Write write | 9 | Update an existing MeisterTask task. You can change the name, status, description, assignee, due date, priority, labels, and more. |
meistertask.meistertask_get_current_user | Read read | 0 | Get the profile of the currently authenticated MeisterTask user, including name, email, and account details. |