productivity
MeisterTask MCP Integration for OpenAI Agents SDK
Connect MeisterTask to OpenAI Agents SDK through the local KosmoKrator MCP gateway with scoped tools, credentials, and write policy.
Connect MeisterTask to OpenAI Agents SDK
Attach KosmoKrator integration tools to OpenAI Agents SDK workflows through a local MCP gateway.
Start the KosmoKrator MCP gateway locally and point the OpenAI Agents SDK MCP tool at that process or wrapper. The gateway is local, scoped to this integration, and starts with
--write=deny so OpenAI Agents can inspect read-capable tools without receiving write access by default.
MeisterTask MCP Config for OpenAI Agents SDK
Use headless JSON commands for CI-style execution and MCP for agent tool discovery.
{
"mcpServers": {
"kosmokrator-meistertask": {
"type": "stdio",
"command": "kosmo",
"args": [
"mcp:serve",
"--integration=meistertask",
"--write=deny"
]
}
}
} Run the Gateway Manually
kosmokrator mcp:serve --integration=meistertask --write=deny Why Use KosmoKrator Here
Expose only MeisterTask instead of a broad multi-service tool list.
Reuse credentials already configured for the KosmoKrator CLI and Lua runtime.
Start read-only, then opt into ask or allow for trusted workspaces.
MeisterTask Tools Visible to OpenAI Agents
OpenAI Agents sees stable MCP tool names generated from the MeisterTask integration catalog.
| MCP tool | Source function | Type | Description |
|---|---|---|---|
integration__meistertask__meistertask_list_projects | meistertask.meistertask_list_projects | Read | List all MeisterTask projects the authenticated user has access to. Returns project IDs, names, and basic metadata. |
integration__meistertask__meistertask_get_project | meistertask.meistertask_get_project | Read | Get detailed information about a specific MeisterTask project, including sections, members, and status. |
integration__meistertask__meistertask_create_task | meistertask.meistertask_create_task | Write | 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. |
integration__meistertask__meistertask_list_tasks | meistertask.meistertask_list_tasks | Read | List tasks across MeisterTask projects with optional filters. Supports filtering by project, status, assignee, and more. |
integration__meistertask__meistertask_get_task | meistertask.meistertask_get_task | Read | Get detailed information about a specific MeisterTask task, including its description, status, assignee, due date, and attachments. |
integration__meistertask__meistertask_update_task | meistertask.meistertask_update_task | Write | Update an existing MeisterTask task. You can change the name, status, description, assignee, due date, priority, labels, and more. |
integration__meistertask__meistertask_get_current_user | meistertask.meistertask_get_current_user | Read | Get the profile of the currently authenticated MeisterTask user, including name, email, and account details. |