KosmoKrator

productivity

Accelo MCP Integration for OpenAI Agents SDK

Connect Accelo to OpenAI Agents SDK through the local KosmoKrator MCP gateway with scoped tools, credentials, and write policy.

7 functions 6 read 1 write Bearer token auth

Connect Accelo 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.

Accelo MCP Config for OpenAI Agents SDK

Use headless JSON commands for CI-style execution and MCP for agent tool discovery.

{
  "mcpServers": {
    "kosmokrator-accelo": {
      "type": "stdio",
      "command": "kosmo",
      "args": [
        "mcp:serve",
        "--integration=accelo",
        "--write=deny"
      ]
    }
  }
}

Run the Gateway Manually

kosmokrator mcp:serve --integration=accelo --write=deny

Why Use KosmoKrator Here

Scoped tools

Expose only Accelo instead of a broad multi-service tool list.

Local credentials

Reuse credentials already configured for the KosmoKrator CLI and Lua runtime.

Write policy

Start read-only, then opt into ask or allow for trusted workspaces.

Accelo Tools Visible to OpenAI Agents

OpenAI Agents sees stable MCP tool names generated from the Accelo integration catalog.

MCP toolSource functionTypeDescription
integration__accelo__accelo_list_tickets accelo.accelo_list_tickets Read List support tickets in Accelo. Returns a paginated list of tickets, optionally filtered by status.
integration__accelo__accelo_get_ticket accelo.accelo_get_ticket Read Get details of a specific support ticket in Accelo by its ID.
integration__accelo__accelo_create_ticket accelo.accelo_create_ticket Write Create a new support ticket in Accelo. Requires a title and body. Optionally associate with a contract and set priority.
integration__accelo__accelo_list_tasks accelo.accelo_list_tasks Read List tasks in Accelo. Returns a paginated list of tasks, optionally filtered by status.
integration__accelo__accelo_get_task accelo.accelo_get_task Read Get details of a specific task in Accelo by its ID.
integration__accelo__accelo_list_projects accelo.accelo_list_projects Read List projects in Accelo. Returns a paginated list of projects, optionally filtered by status.
integration__accelo__accelo_get_current_user accelo.accelo_get_current_user Read Get the profile of the currently authenticated Accelo user. Use this to verify credentials and see user details.

Related Accelo Pages