KosmoKrator

productivity

DeepL MCP Gateway for AI Agents

Expose DeepL tools to Claude Code, Cursor, Codex, and other MCP clients through the local KosmoKrator MCP gateway.

DeepL MCP Gateway

Expose DeepL to MCP clients with `kosmokrator mcp:serve --integration=deepl`.

If the client has never used KosmoKrator before, install it first, then register this integration as a stdio MCP server.

Install KosmoKrator
curl -fsSL https://raw.githubusercontent.com/OpenCompanyApp/kosmokrator/main/install.sh | bash
Install gateway entry
kosmokrator mcp:gateway:install --integration=deepl --write=deny --json
MCP configuration
{
  "mcpServers": {
    "kosmokrator-deepl": {
      "type": "stdio",
      "command": "kosmo",
      "args": [
        "mcp:serve",
        "--integration=deepl",
        "--write=deny"
      ]
    }
  }
}
Serve manually
kosmokrator mcp:serve --integration=deepl --write=deny

Client Notes

Use one scoped MCP gateway entry, then adapt the config location to the client or framework.

Claude Code Connect local KosmoKrator integrations to Claude Code through one scoped MCP gateway entry. Claude Code can launch the local kosmo binary directly from the project MCP config.
Cursor Expose selected local integrations to Cursor through KosmoKrator without configuring each service as its own MCP server. Use the same KosmoKrator install and integration credentials that power terminal and headless runs.
Codex Use KosmoKrator as a local MCP proxy for Codex so coding sessions can reach selected integrations with explicit write policy. Keep write access denied or ask-based unless the workspace is trusted.
OpenAI Agents SDK Attach KosmoKrator integration tools to OpenAI Agents SDK workflows through a local MCP gateway. Use headless JSON commands for CI-style execution and MCP for agent tool discovery.
Claude Agent SDK Give Claude Agent SDK workflows access to KosmoKrator integrations through a local MCP server. Use a narrow integration list so the agent does not load unrelated tools.
Vercel AI SDK Use KosmoKrator as a local integration gateway for Vercel AI SDK agents and scripts. Prefer CLI JSON calls when a workflow only needs one deterministic integration operation.
LangChain Bridge LangChain agents to local KosmoKrator integration tools through MCP or headless CLI calls. Keep the gateway scoped to the integration and operation class needed by the chain.
LangGraph Run KosmoKrator integration calls from LangGraph nodes while preserving local credentials and permissions. Headless CLI calls fit repeatable graph edges; MCP fits exploratory agent nodes.
CrewAI Expose KosmoKrator integrations to CrewAI workers as scoped local tools. Use per-worker integration scopes to avoid giving every worker every tool.
Generic MCP Clients Connect any stdio-compatible MCP client to local KosmoKrator integration tools. Start with read-only write policy and expand only for trusted projects.

MCP Tool Names

KosmoKrator exposes integration tools through the gateway with stable names.

MCP toolSource functionType
integration__deepl__deepl_translate_text deepl.deepl_translate_text Write write
integration__deepl__deepl_translate_document deepl.deepl_translate_document Write write
integration__deepl__deepl_get_document_status deepl.deepl_get_document_status Write write
integration__deepl__deepl_download_document deepl.deepl_download_document Write write
integration__deepl__deepl_list_glossary_languages deepl.deepl_list_glossary_languages Read read
integration__deepl__deepl_create_multilingual_glossary deepl.deepl_create_multilingual_glossary Write write
integration__deepl__deepl_list_multilingual_glossaries deepl.deepl_list_multilingual_glossaries Read read
integration__deepl__deepl_get_multilingual_glossary deepl.deepl_get_multilingual_glossary Read read
integration__deepl__deepl_patch_multilingual_glossary deepl.deepl_patch_multilingual_glossary Write write
integration__deepl__deepl_delete_multilingual_glossary deepl.deepl_delete_multilingual_glossary Write write
integration__deepl__deepl_get_multilingual_glossary_entries deepl.deepl_get_multilingual_glossary_entries Read read
integration__deepl__deepl_delete_dictionary deepl.deepl_delete_dictionary Write write
integration__deepl__deepl_replace_dictionary deepl.deepl_replace_dictionary Write write
integration__deepl__deepl_create_glossary deepl.deepl_create_glossary Write write
integration__deepl__deepl_list_glossaries deepl.deepl_list_glossaries Read read
integration__deepl__deepl_get_glossary deepl.deepl_get_glossary Read read
integration__deepl__deepl_delete_glossary deepl.deepl_delete_glossary Write write
integration__deepl__deepl_get_glossary_entries deepl.deepl_get_glossary_entries Read read
integration__deepl__deepl_rephrase_text deepl.deepl_rephrase_text Write write
integration__deepl__deepl_get_usage deepl.deepl_get_usage Read read
integration__deepl__deepl_list_languages deepl.deepl_list_languages Read read
integration__deepl__deepl_admin_create_developer_key deepl.deepl_admin_create_developer_key Write write
integration__deepl__deepl_admin_get_developer_keys deepl.deepl_admin_get_developer_keys Read read
integration__deepl__deepl_admin_deactivate_developer_key deepl.deepl_admin_deactivate_developer_key Write write
integration__deepl__deepl_admin_rename_developer_key deepl.deepl_admin_rename_developer_key Write write
integration__deepl__deepl_admin_set_developer_key_usage_limits deepl.deepl_admin_set_developer_key_usage_limits Write write
integration__deepl__deepl_admin_get_analytics deepl.deepl_admin_get_analytics Read read
integration__deepl__deepl_get_style_rule_lists deepl.deepl_get_style_rule_lists Read read
integration__deepl__deepl_create_style_rule_list deepl.deepl_create_style_rule_list Write write
integration__deepl__deepl_get_style_rule_list deepl.deepl_get_style_rule_list Read read
integration__deepl__deepl_update_style_rule_list deepl.deepl_update_style_rule_list Write write
integration__deepl__deepl_delete_style_rule_list deepl.deepl_delete_style_rule_list Write write
integration__deepl__deepl_update_style_rule_configured_rules deepl.deepl_update_style_rule_configured_rules Write write
integration__deepl__deepl_create_custom_instruction deepl.deepl_create_custom_instruction Write write
integration__deepl__deepl_get_custom_instruction deepl.deepl_get_custom_instruction Read read
integration__deepl__deepl_update_custom_instruction deepl.deepl_update_custom_instruction Write write
integration__deepl__deepl_delete_custom_instruction deepl.deepl_delete_custom_instruction Write write
integration__deepl__deepl_list_translation_memories deepl.deepl_list_translation_memories Read read
integration__deepl__deepl_get_voice_streaming_url deepl.deepl_get_voice_streaming_url Write write
integration__deepl__deepl_request_reconnection deepl.deepl_request_reconnection Read read

Write Access

Start with --write=deny for read-only MCP clients. Use --write=ask or --write=allow only when the client and workspace are trusted.