KosmoKrator

productivity

Transifex MCP Integration for OpenAI Agents SDK

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

7 functions 7 read 0 write API token auth

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

Transifex MCP Config for OpenAI Agents SDK

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

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

Run the Gateway Manually

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

Why Use KosmoKrator Here

Scoped tools

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

Transifex Tools Visible to OpenAI Agents

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

MCP toolSource functionTypeDescription
integration__transifex__transifex_list_projects transifex.transifex_list_projects Read List all Transifex projects. Returns project slugs, names, descriptions, and language statistics.
integration__transifex__transifex_get_project transifex.transifex_get_project Read Get details of a specific Transifex project including its name, description, source language, and team.
integration__transifex__transifex_list_resources transifex.transifex_list_resources Read List all resources (source files) in a Transifex project. Returns resource slugs, names, types, and word/string counts.
integration__transifex__transifex_get_resource transifex.transifex_get_resource Read Get details of a specific Transifex resource including its name, type, word count, string count, and translation progress.
integration__transifex__transifex_list_translations transifex.transifex_list_translations Read List translations for a specific resource in a Transifex project. Optionally filter by language code.
integration__transifex__transifex_list_languages transifex.transifex_list_languages Read List all languages configured for a Transifex project. Returns language codes, names, and translation progress.
integration__transifex__transifex_get_current_user transifex.transifex_get_current_user Read Get information about the currently authenticated Transifex user, including username, email, and account details.

Related Transifex Pages