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

@iflow-mcp/frap129-opencode-mcp-tool

v1.1.4

Published

MCP server for OpenCode CLI integration

Readme

OpenCode MCP Tool

GitHub Release npm version npm downloads License: MIT Open Source

📚 Documentation Available in docs/ folder - Examples, FAQ, Troubleshooting, Best Practices

This is a Model Context Protocol (MCP) server that allows AI assistants to interact with the OpenCode CLI. It enables AI assistants to leverage multiple AI models through a unified interface, with features like plan mode for structured thinking and extensive model selection.

  • Ask questions through multiple AI models via Claude or other MCP clients
  • Use plan mode for structured analysis and safer operations

TLDR: Claude + Multiple AI Models via OpenCode

Goal: Use OpenCode's multi-model capabilities directly in Claude Code with flexible model selection and plan mode features.

Prerequisites

Before using this tool, ensure you have:

  1. Node.js (v16.0.0 or higher)
  2. OpenCode CLI installed and configured

One-Line Setup

claude mcp add opencode -- npx -y opencode-mcp-tool -- --model google/gemini-2.5-pro

Verify Installation

Type /mcp inside Claude Code to verify the opencode-cli MCP is active.


Alternative: Import from Claude Desktop

If you already have it configured in Claude Desktop:

  1. Add to your Claude Desktop config:
"opencode": {
  "command": "npx",
  "args": ["-y", "opencode-mcp-tool", "--", "--model", "google/gemini-2.5-pro"]
}
  1. Import to Claude Code:
claude mcp add-from-claude-desktop

Configuration

Register the MCP server with your MCP client. Note: The server requires a primary model to be specified.

For NPX Usage (Recommended)

Add this configuration to your Claude Desktop config file:

{
  "mcpServers": {
    "opencode": {
      "command": "npx",
      "args": ["-y", "opencode-mcp-tool", "--", "--model", "google/gemini-2.5-pro", "--fallback-model", "google/gemini-2.5-flash"]
    }
  }
}

For Global Installation

If you installed globally, use this configuration instead:

{
  "mcpServers": {
    "opencode": {
      "command": "opencode-mcp",
      "args": ["--model", "google/gemini-2.5-pro", "--fallback-model", "google/gemini-2.5-flash"]
    }
  }
}

Configuration File Locations:

  • Claude Desktop:
    • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json
    • Windows: %APPDATA%\Claude\claude_desktop_config.json
    • Linux: ~/.config/claude/claude_desktop_config.json

After updating the configuration, restart your terminal session.

Example Workflow

  • Natural language: "use opencode to explain index.html", "understand the massive project using opencode", "ask opencode to search for latest news"
  • Claude Code: Type /opencode and commands will populate in Claude Code's interface.

Usage Examples

With File References (using @ syntax)

  • ask opencode to analyze @src/main.js and explain what it does
  • use opencode to summarize @. the current directory
  • analyze @package.json and tell me about dependencies

General Questions (without files)

  • ask opencode to search for the latest tech news
  • use opencode to explain div centering
  • ask opencode about best practices for React development related to @file_im_confused_about

Using OpenCode's Plan Mode

The plan mode allows you to safely test code changes, run scripts, or execute potentially risky operations with structured planning.

  • use opencode plan mode to create and run a Python script that processes data
  • ask opencode to safely test @script.py and explain what it does
  • use opencode plan mode to install numpy and create a data visualization
  • test this code safely: Create a script that makes HTTP requests to an API

Tools (for the AI)

These tools are designed to be used by the AI assistant.

  • ask-opencode: Execute OpenCode with model selection and mode control. Uses plan mode by default for structured analysis.
    • prompt (required): The analysis request. Use the @ syntax to include file or directory references (e.g., @src/main.js explain this code) or ask general questions (e.g., Please use a web search to find the latest news stories).
    • model (optional): The model to use. If not specified, uses the primary model configured at server startup.
    • mode (optional): Execution mode - 'plan' for structured analysis (default), 'build' for immediate execution, or custom mode string.
  • brainstorm: Generate novel ideas with dynamic context gathering using creative frameworks (SCAMPER, Design Thinking, etc.), domain context integration, idea clustering, feasibility analysis, and iterative refinement.
    • prompt (required): Primary brainstorming challenge or question to explore.
    • methodology (optional): Brainstorming framework - 'divergent', 'convergent', 'scamper', 'design-thinking', 'lateral', or 'auto' (default).
    • domain (optional): Domain context (e.g., 'software', 'business', 'creative', 'research').
    • ideaCount (optional): Target number of ideas to generate (default: 12).
    • includeAnalysis (optional): Include feasibility and impact analysis (default: true).
  • timeout-test: Test timeout prevention by running for a specified duration.
    • duration (required): Duration in milliseconds for the test.
  • ping: Echo test tool that returns a message.
    • prompt (optional): Message to echo back.
  • Help: Shows the OpenCode CLI help text.

Slash Commands (for the User)

You can use these commands directly in Claude Code's interface (compatibility with other clients has not been tested).

  • /plan: Execute OpenCode in plan mode for structured analysis and safer operations.
    • prompt (required): Analysis request (e.g., /plan prompt:Create and run a Python script that processes CSV data or /plan prompt:@script.py Analyze this script safely).
  • /build: Execute OpenCode in immediate execution mode for direct implementation.
    • prompt (required): Implementation request for immediate code execution.
  • /help: Displays the OpenCode CLI help information.
  • /ping: Tests the connection to the server.
    • prompt (optional): A message to echo back.

Contributing

Contributions are welcome! Please see our Contributing Guidelines for details on how to submit pull requests, report issues, and contribute to the project.

License

This project is licensed under the MIT License. See the LICENSE file for details.

Disclaimer: This is an unofficial, third-party tool and is not affiliated with, endorsed, or sponsored by Google.