Connect Agents & Harnesses
Anything that lets you set a custom API base URL can talk to mithril.fund. Copy-paste setup for popular finished tools.
Two rules that apply to every tool
1. Model names are always qwen3.8-flash-next-whitehacker (catalog: /v1/models)
2. Live connect is OpenAI-compatible only: base URL https://api.mithril.fund/v1, token Bearer kc_pat_…. Anthropic Messages (POST /v1/messages) is not served (405). Claude Code-class clients need a translating proxy (see Anthropic SDK).
# list every available model id
curl https://api.mithril.fund/v1/models \
-H "Authorization: Bearer $KOTOBA_API_TOKEN"
Per-tool pages
- Claude Code Caveat
Anthropic's terminal coding agent. Caveat: needs a translating proxy — Messages wire not served.
Open the setup - Codex CLI Verified
OpenAI's terminal coding agent. OpenAI-compatible.
Open the setup - Cline Should work
VS Code extension. Set API Provider to "OpenAI Compatible" in settings.
Open the setup - Kilo Code Verified
VS Code extension. Connect via its Custom provider.
Open the setup - OpenCode Caveat
Open-source terminal agent. Configured via opencode.json.
Open the setup - Aider Should work
Treats any OpenAI-compatible endpoint as its openai/ provider.
Open the setup - Hermes Agent Verified
Nous Research's terminal agent (Linux/macOS/WSL2). Add a kotoba provider and select it with model.provider. Measured on agent-coding sessions, 2026-09-17 — every line of the block below is a measured floor.
Open the setup - Open WebUI Should work
Self-hosted chat UI. Launch with the connection prefilled via environment variables.
Open the setup - Cursor Caveat
Override the OpenAI base URL in settings (requires Cursor Pro).
Open the setup - Any OpenAI SDK Verified
Any OpenAI SDK works with a one-line base-URL swap.
Open the setup