KosmoKrator

forms

Tally MCP Integration for OpenAI Agents SDK

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

6 functions 6 read 0 write Bearer token auth

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

Tally MCP Config for OpenAI Agents SDK

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

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

Run the Gateway Manually

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

Why Use KosmoKrator Here

Scoped tools

Expose only Tally 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.

Tally Tools Visible to OpenAI Agents

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

MCP toolSource functionTypeDescription
integration__tally__tally_get_current_user tally.tally_get_current_user Read Get the authenticated user's profile information, including name, email, and account details.
integration__tally__tally_get_form tally.tally_get_form Read Get full details of a specific Tally form by its ID, including form structure, fields, and settings.
integration__tally__tally_get_submission tally.tally_get_submission Read Get full details of a specific form submission by its ID, including all field responses and metadata.
integration__tally__tally_list_forms tally.tally_list_forms Read List all Tally forms accessible to the authenticated user. Returns form IDs, titles, status, and submission counts. Supports pagination.
integration__tally__tally_list_submissions tally.tally_list_submissions Read List all submissions for a specific Tally form. Returns respondent answers, submission dates, and metadata. Supports pagination.
integration__tally__tally_list_workspaces tally.tally_list_workspaces Read List all workspaces accessible to the authenticated Tally user. Returns workspace names, IDs, and member info.

Related Tally Pages