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

opusmax-mcp

v1.0.0

Published

OpusMax MCP server — web search and image understanding tools for AI coding agents

Readme

OpusCode MCP

MCP (Model Context Protocol) server that provides web search and image understanding tools for AI coding agents — Claude Code, Cursor, OpenCode, and more.

Quick Install

Claude Code (recommended)

claude mcp add -s user OpusCode \
  --env OPUSCODE_API_KEY=your_key \
  --env OPUSCODE_URL=https://claude.opuscode.pro \
  -- npx -y opuscode-mcp

Global install

npm install -g opuscode-mcp

Manual Configuration

Claude Code

Add to ~/.claude/settings.json:

{
  "mcpServers": {
    "OpusCode": {
      "command": "npx",
      "args": ["-y", "opuscode-mcp"],
      "env": {
        "OPUSCODE_API_KEY": "your_key",
        "OPUSCODE_URL": "https://claude.opuscode.pro"
      }
    }
  }
}

Cursor

Add to .cursor/mcp.json:

{
  "mcpServers": {
    "OpusCode": {
      "command": "npx",
      "args": ["-y", "opuscode-mcp"],
      "env": {
        "OPUSCODE_API_KEY": "your_key",
        "OPUSCODE_URL": "https://claude.opuscode.pro"
      }
    }
  }
}

OpenCode

Add to your OpenCode config:

{
  "mcp": {
    "OpusCode": {
      "type": "local",
      "command": ["npx", "-y", "opuscode-mcp"],
      "environment": {
        "OPUSCODE_API_KEY": "your_key",
        "OPUSCODE_URL": "https://claude.opuscode.pro"
      },
      "enabled": true
    }
  }
}

Tools

| Tool | Description | |---|---| | web_search | Search the web for real-time information. Best with 3–5 keywords. | | understand_image | Analyze images using AI. Accepts URLs, local file paths, or base64 data URLs. |

Usage Examples

Web Search

Search for: "Node.js 22 new features 2025"

The web_search tool accepts a query string and returns structured search results.

Image Understanding

Prompt: "Describe this UI mockup and list all the components"
Image source: "./screenshot.png"

The understand_image tool accepts:

  • prompt — What you want to know about the image
  • image_source — One of:
    • An HTTP/HTTPS URL (https://example.com/image.png)
    • A local file path (./diagram.png or /home/user/photo.jpg)
    • A base64 data URL (data:image/png;base64,...)

Supported formats: JPEG, PNG, WebP. Max size: 15MB.

Environment Variables

| Variable | Required | Default | Description | |---|---|---|---| | OPUSCODE_API_KEY | Yes | — | API key for authentication | | OPUSCODE_URL | No | http://localhost:3001 | OpusCode server URL |

Troubleshooting

"Error: Proxy request failed: 401"

Your OPUSCODE_API_KEY is missing or invalid.

"Error: Proxy request failed: ECONNREFUSED"

The server is not reachable. Check OPUSCODE_URL.

"Image too large"

Images must be under 15MB. Resize or compress before retrying.

Tools not showing up

  1. Restart your AI coding tool after adding the MCP config.
  2. Check that npx opuscode-mcp runs without errors.
  3. In Claude Code, type /mcp to verify web_search and understand_image are listed.

License

MIT