DevTk.AI
Xiaomi MiMoMiMo-V2.5AI AgentsClaude CodeOpenCode

Xiaomi MiMo-V2.5 Agent Model Guide: Pricing, Models, Claude Code, OpenCode

Xiaomi MiMo-V2.5 and V2.5-Pro launched with 1M context, MIT-licensed weights, OpenAI/Anthropic-compatible APIs, Token Plan subscriptions, and direct support for Claude Code, OpenCode, Codex, Cline, Kilo, and Roo.

DevTk.AI 2026-04-28 Updated 2026-04-28 3 min read

Xiaomi MiMo-V2.5 is now worth tracking for agent builders. The new family includes MiMo-V2.5-Pro, a 1.02T-parameter MoE model with 42B active parameters and 1M context, and MiMo-V2.5, a native full-modal model for text, image, video, and audio understanding.

Xiaomi says the MiMo-V2.5 weights are open-sourced under the MIT license, and the API platform supports both OpenAI-compatible and Anthropic-compatible protocols. That makes MiMo unusually relevant for coding agents.

Official sources: MiMo-V2.5 open-source announcement, MiMo pricing and limits, MiMo Claude Code setup, and MiMo OpenCode setup.

Model Lineup

ModelRoleContextMax OutputBest For
mimo-v2.5-proFlagship agent/coding model1M128KLong-horizon coding, autonomous agents
mimo-v2.5Full-modal agent model1M128KText, image, video, audio workflows
mimo-v2.5-flashLow-cost text model256K64KHigh-throughput coding and simple tasks

API Pricing

Overseas API prices per 1M tokens:

ModelCache-Miss InputCached InputOutputLong Context Above 256K
mimo-v2.5-pro$1.00$0.20$3.00$2.00 / $0.40 / $6.00
mimo-v2.5$0.40$0.08$2.00$0.80 / $0.16 / $4.00
mimo-v2.5-flash$0.10$0.01$0.30Not applicable; 256K context

Domestic API prices per 1M tokens:

ModelCache-Miss InputCached InputOutputLong Context Above 256K
mimo-v2.5-pro¥7.00¥1.40¥21.00¥14.00 / ¥2.80 / ¥42.00
mimo-v2.5¥2.80¥0.56¥14.00¥5.60 / ¥1.12 / ¥28.00
mimo-v2.5-flash¥0.70¥0.07¥2.10Not applicable; 256K context

Cache writing is currently free for a limited time. The platform also offers Token Plan subscriptions; at update time, Xiaomi’s public plan endpoint showed monthly tiers ranging from Lite at 60M credits to Max at 1.6B credits. Treat plan quotas as control-panel data and recheck before purchase.

Base URLs

Pay-as-you-go API:

OpenAI compatible:    https://api.xiaomimimo.com/v1
Anthropic compatible: https://api.xiaomimimo.com/anthropic

Token Plan, China region:

OpenAI compatible:    https://token-plan-cn.xiaomimimo.com/v1
Anthropic compatible: https://token-plan-cn.xiaomimimo.com/anthropic

Token Plan also exposes Singapore and Europe endpoints from the subscription console.

Claude Code Setup

For Claude Code, use the Anthropic-compatible endpoint:

{
  "env": {
    "ANTHROPIC_BASE_URL": "https://api.xiaomimimo.com/anthropic",
    "ANTHROPIC_AUTH_TOKEN": "your-mimo-api-key",
    "ANTHROPIC_MODEL": "mimo-v2.5-pro",
    "ANTHROPIC_DEFAULT_SONNET_MODEL": "mimo-v2.5-pro",
    "ANTHROPIC_DEFAULT_OPUS_MODEL": "mimo-v2.5-pro",
    "ANTHROPIC_DEFAULT_HAIKU_MODEL": "mimo-v2.5-pro"
  }
}

For Token Plan, replace the base URL with your subscription endpoint and use the tp-xxxxx key from the subscription page.

OpenCode Setup

For OpenCode, create or edit ~/.config/opencode/opencode.json:

{
  "$schema": "https://opencode.ai/config.json",
  "provider": {
    "mimo": {
      "npm": "@ai-sdk/openai-compatible",
      "name": "MiMo",
      "options": {
        "baseURL": "https://api.xiaomimimo.com/v1",
        "apiKey": "your-mimo-api-key"
      },
      "models": {
        "mimo-v2.5-pro": {
          "name": "mimo-v2.5-pro",
          "limit": { "context": 1048576, "output": 131072 },
          "modalities": { "input": ["text"], "output": ["text"] }
        }
      }
    }
  }
}

If you need image understanding, use mimo-v2.5 and add image to the input modalities.

When to Try MiMo

ScenarioRecommendation
You want an open-weight agent model with 1M contextTest mimo-v2.5-pro
You need multimodal agent perceptionTest mimo-v2.5
You need a cheap coding fallbackTest mimo-v2.5-flash
You need mature global enterprise API operationsCompare against OpenAI, Anthropic, and Google first

Related:

Related Posts