productivity
Trello MCP Integration for OpenAI Agents SDK
Connect Trello to OpenAI Agents SDK through the local KosmoKrator MCP gateway with scoped tools, credentials, and write policy.
Connect Trello 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.
Trello MCP Config for OpenAI Agents SDK
Use headless JSON commands for CI-style execution and MCP for agent tool discovery.
{
"mcpServers": {
"kosmokrator-trello": {
"type": "stdio",
"command": "kosmo",
"args": [
"mcp:serve",
"--integration=trello",
"--write=deny"
]
}
}
} Run the Gateway Manually
kosmokrator mcp:serve --integration=trello --write=deny Why Use KosmoKrator Here
Expose only Trello 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.
Trello Tools Visible to OpenAI Agents
OpenAI Agents sees stable MCP tool names generated from the Trello integration catalog.
| MCP tool | Source function | Type | Description |
|---|---|---|---|
integration__trello__trello_list_boards | trello.trello_list_boards | Read | List all boards for the authenticated Trello member. Supports filtering by status and field selection. |
integration__trello__trello_get_board | trello.trello_get_board | Read | Get detailed information about a Trello board by ID. |
integration__trello__trello_list_lists | trello.trello_list_lists | Read | List all lists on a Trello board. |
integration__trello__trello_get_list | trello.trello_get_list | Read | Get detailed information about a Trello list by ID. |
integration__trello__trello_list_cards | trello.trello_list_cards | Read | List all cards in a Trello list. Supports limit and before cursor for pagination. |
integration__trello__trello_create_card | trello.trello_create_card | Write | Create a new card on a Trello list. |
integration__trello__trello_get_current_user | trello.trello_get_current_user | Read | Get the profile of the currently authenticated Trello user. Useful for verifying credentials and displaying account information. |