communication
Missive MCP Integration for OpenAI Agents SDK
Connect Missive to OpenAI Agents SDK through the local KosmoKrator MCP gateway with scoped tools, credentials, and write policy.
Connect Missive 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.
Missive MCP Config for OpenAI Agents SDK
Use headless JSON commands for CI-style execution and MCP for agent tool discovery.
{
"mcpServers": {
"kosmokrator-missive": {
"type": "stdio",
"command": "kosmo",
"args": [
"mcp:serve",
"--integration=missive",
"--write=deny"
]
}
}
} Run the Gateway Manually
kosmokrator mcp:serve --integration=missive --write=deny Why Use KosmoKrator Here
Expose only Missive 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.
Missive Tools Visible to OpenAI Agents
OpenAI Agents sees stable MCP tool names generated from the Missive integration catalog.
| MCP tool | Source function | Type | Description |
|---|---|---|---|
integration__missive__missive_list_conversations | missive.missive_list_conversations | Read | List conversations from Missive. Supports filtering by inbox, assignee, and state. Returns paginated results. |
integration__missive__missive_get_conversation | missive.missive_get_conversation | Read | Get a single Missive conversation by ID, including messages and metadata. |
integration__missive__missive_create_comment | missive.missive_create_comment | Write | Create a comment on a Missive conversation. Use this to add internal notes or replies. |
integration__missive__missive_list_tasks | missive.missive_list_tasks | Read | List tasks from Missive. Supports filtering by state and assignee. Returns paginated results. |
integration__missive__missive_create_task | missive.missive_create_task | Write | Create a new task in Missive. Requires a title. Optionally set description, assignee, and due date. |
integration__missive__missive_get_current_user | missive.missive_get_current_user | Read | Get the profile of the currently authenticated Missive user, including name, email, and organization info. |