KosmoKrator

finance

Wise MCP Integration for Codex

Connect Wise to Codex through the local KosmoKrator MCP gateway with scoped tools, credentials, and write policy.

7 functions 6 read 1 write API key auth

Connect Wise to Codex

Use KosmoKrator as a local MCP proxy for Codex so coding sessions can reach selected integrations with explicit write policy.

Register kosmo mcp:serve as a local stdio server and choose the integration allowlist. The gateway is local, scoped to this integration, and starts with --write=deny so Codex can inspect read-capable tools without receiving write access by default.

Wise MCP Config for Codex

Keep write access denied or ask-based unless the workspace is trusted.

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

Run the Gateway Manually

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

Why Use KosmoKrator Here

Scoped tools

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

Wise Tools Visible to Codex

Codex sees stable MCP tool names generated from the Wise integration catalog.

MCP toolSource functionTypeDescription
integration__wise__wise_list_profiles wise.wise_list_profiles Read List all Wise profiles (personal and business) for the authenticated user.
integration__wise__wise_get_profile wise.wise_get_profile Read Get details of a specific Wise profile by ID.
integration__wise__wise_list_balances wise.wise_list_balances Read List multi-currency account balances for a Wise profile.
integration__wise__wise_list_transfers wise.wise_list_transfers Read List Wise transfers with optional filtering by profile, status, and pagination.
integration__wise__wise_get_transfer wise.wise_get_transfer Read Get details of a specific Wise transfer by ID.
integration__wise__wise_create_transfer wise.wise_create_transfer Write Create a new money transfer on Wise.
integration__wise__wise_get_current_user wise.wise_get_current_user Read Get details of the currently authenticated Wise user.

Related Wise Pages