productivity
Crowdin MCP Integration for OpenAI Agents SDK
Connect Crowdin to OpenAI Agents SDK through the local KosmoKrator MCP gateway with scoped tools, credentials, and write policy.
Connect Crowdin 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.
Crowdin MCP Config for OpenAI Agents SDK
Use headless JSON commands for CI-style execution and MCP for agent tool discovery.
{
"mcpServers": {
"kosmokrator-crowdin": {
"type": "stdio",
"command": "kosmo",
"args": [
"mcp:serve",
"--integration=crowdin",
"--write=deny"
]
}
}
} Run the Gateway Manually
kosmokrator mcp:serve --integration=crowdin --write=deny Why Use KosmoKrator Here
Expose only Crowdin 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.
Crowdin Tools Visible to OpenAI Agents
OpenAI Agents sees stable MCP tool names generated from the Crowdin integration catalog.
| MCP tool | Source function | Type | Description |
|---|---|---|---|
integration__crowdin__crowdin_list_projects | crowdin.crowdin_list_projects | Read | List Crowdin projects. Returns project IDs, names, target languages, and other metadata. Supports pagination and filtering by group. |
integration__crowdin__crowdin_get_project | crowdin.crowdin_get_project | Read | Get details of a specific Crowdin project by ID. Returns project name, description, source/target languages, and other settings. |
integration__crowdin__crowdin_list_strings | crowdin.crowdin_list_strings | Read | List source strings in a Crowdin project. Returns string IDs, text, context, and file associations. Supports filtering by file or branch. |
integration__crowdin__crowdin_get_string | crowdin.crowdin_get_string | Read | Get details of a specific source string in a Crowdin project. Returns string text, context, file path, and other metadata. |
integration__crowdin__crowdin_list_translations | crowdin.crowdin_list_translations | Read | List translations in a Crowdin project. Returns translated text, language info, and approval status. Supports filtering by string or language. |
integration__crowdin__crowdin_list_languages | crowdin.crowdin_list_languages | Read | List languages supported by Crowdin. Returns language IDs, locale codes (e.g., "en", "de", "fr"), names, and text direction. |
integration__crowdin__crowdin_get_current_user | crowdin.crowdin_get_current_user | Read | Get the currently authenticated Crowdin user profile. Returns username, email, display name, and avatar URL. |