npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

@ruqingwang/mcp-server-mimo-vision

v1.2.0

Published

MCP server for image vision analysis using MiMo multimodal model

Readme

mcp-server-mimo-vision

MCP server for image vision analysis using multimodal models (MiMo, Claude, GPT-4o, etc.).

Why?

Claude Code's main model may not support multimodal (vision) input. This MCP server bridges the gap by calling a vision-capable model to analyze images and return text descriptions.

Quick Start

Option 1: npx (Recommended)

Add to .mcp.json in your project or ~/.claude/.mcp.json:

{
  "mcpServers": {
    "vision": {
      "command": "npx",
      "args": ["-y", "@ruqingwang/mcp-server-mimo-vision"],
      "env": {
        "ANTHROPIC_AUTH_TOKEN": "your-token-here"
      }
    }
  }
}

Option 2: One-click Install Script

curl -fsSL https://raw.githubusercontent.com/wangruqing723/mimo-vision-mcp/main/install.sh | bash

Option 3: Global Install

npm install -g @ruqingwang/mcp-server-mimo-vision

Configuration

After install, all settings are in ~/.claude/vision-mcp.conf:

ANTHROPIC_BASE_URL="https://your-proxy.com/anthropic"
ANTHROPIC_AUTH_TOKEN="your-token"
VISION_MODEL="mimo-v2.5"  # Change to any vision model

Supported Models

Any model compatible with Anthropic Messages API that supports multimodal:

| Model | Description | |-------|-------------| | mimo-v2.5 | MiMo multimodal (default) | | mimo-v2.5-pro | MiMo Pro | | claude-sonnet-4-20250514 | Claude Sonnet | | gpt-4o | GPT-4o (requires compatible proxy) |

Environment Variables (override config file)

| Variable | Description | Default | |----------|-------------|---------| | ANTHROPIC_BASE_URL | API proxy URL | https://token-plan-cn.xiaomimimo.com/anthropic | | ANTHROPIC_AUTH_TOKEN | API auth token | Required | | VISION_MODEL | Model name | mimo-v2.5 |

Image Input Modes

The describe_image and ocr_image tools accept:

  1. File path: /path/to/image.png
  2. HTTP URL: https://example.com/img.jpg
  3. Data URI: data:image/png;base64,...
  4. Raw base64: base64-encoded image string

Auto-intercept Hook (Optional)

To automatically use vision MCP when Claude Code reads an image file, add a PreToolUse hook to ~/.claude/settings.json:

{
  "hooks": {
    "PreToolUse": [
      {
        "matcher": "Read",
        "hooks": [
          {
            "type": "command",
            "command": "/path/to/hook-vision.sh",
            "statusMessage": "Analyzing image..."
          }
        ]
      }
    ]
  }
}

Tools

| Tool | Description | |------|-------------| | describe_image | Analyze image content, return text description | | ocr_image | Extract text from image (OCR) |

Usage

Once configured, just ask in Claude Code:

Look at /path/to/image.png and describe what's in it
Extract text from /path/to/screenshot.png

GitHub

https://github.com/wangruqing723/mimo-vision-mcp

License

MIT