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

research-agent-mcp

v1.0.8

Published

MCP server for research-agent (case study search). Connect to a deployed research-agent server.

Readme

research-agent-mcp

npm バージョン: 1.0.8package.jsonversion と同期)

事例調査エージェント(research-agent)の MCP サーバーです。デプロイ済みの research-agent サーバーに接続し、Claude から「事例調査をして」「結果を教えて」と依頼できるようにします。

必要なもの

  • Node.js 18 以上node -v で確認)
  • デプロイ済み research-agent サーバーの URL(誰かが共有している URL か、自分でデプロイしたサーバー)

簡単セットアップ(おすすめ)

  1. ターミナルで次を実行(@1.0.8package.jsonversion に合わせる。省略時は npm の解決に任せることも可):
    npx -y [email protected] research-agent-mcp-setup
  2. 表示に従って サーバー URL を入力(例: https://xxx.onrender.com)。続けて GET /health でサーバー要件を確認し、必要なら API キーClient ID を順に聞かれます。--url=... だけ付けて実行した場合も、未入力分だけ順に聞かれます。
  3. Claude Desktop を再起動する。

これで設定完了です。Claude で「〇〇の事例を調査して」と試せます。

非対話で設定する場合

npx -y [email protected] research-agent-mcp-setup --url=https://your-app.onrender.com
# API キーが必要な場合
npx -y [email protected] research-agent-mcp-setup --url=https://your-app.onrender.com --api-key=your-key
# Client ID が必要な場合(サーバーで `RESEARCH_AGENT_REQUIRE_CLIENT_ID=true` で運用しているとき)
npx -y [email protected] research-agent-mcp-setup --url=https://your-app.onrender.com --api-key=your-key --client-id=your-client-id

セットアップ時、GET /health で API キー/Client ID の要否を確認し、続けてデフォルトで GET /api/verify を呼び、サーバーに設定されている RESEARCH_AGENT_API_KEY と一致するか(および Client ID 必須時はヘッダが付くか)を確認します。オフラインなどで検証を飛ばす場合は --skip-verify を付けてください。

手動で設定する場合

  1. Claude Desktop → 設定 → Developer → Edit configclaude_desktop_config.json を開く。
  2. mcpServers に次を追加(既存の MCP がある場合はその中に research-agent を足す):
{
  "mcpServers": {
    "research-agent": {
      "command": "npx",
      "args": ["-y", "[email protected]"],
      "env": {
        "RESEARCH_AGENT_SERVER_URL": "https://your-app.onrender.com",
        "RESEARCH_AGENT_API_KEY": "optional-if-server-requires",
        "RESEARCH_AGENT_CLIENT_ID": "optional-if-server-requires-client-id"
      }
    }
  }
}
  1. Claude Desktop を再起動する。
  • RESEARCH_AGENT_SERVER_URL: 必須。research-agent サーバーの URL。
  • RESEARCH_AGENT_API_KEY: サーバーが API キーを要求している場合のみ同じ値を設定。
  • RESEARCH_AGENT_CLIENT_ID: サーバーが利用者識別を必須にしている場合(RESEARCH_AGENT_REQUIRE_CLIENT_ID=true)に、その利用者に割り当てた Client ID を設定。

使い方

  • Claude に「製造業のDX事例を調査して」などと依頼 → 調査が開始される。
  • 1〜2 分待ってから「結果を教えて」と依頼 → サマリーと CSV のダウンロード URL が返る。CSV は ブラウザで URL を開くとダウンロードされます。

制限

  • このパッケージは リモート専用 です。サーバー URL を指定してデプロイ済みサーバーに接続する前提です。
  • ローカルでサーバーを立てずに開発・検証したい場合は、research-agent 本家リポジトリをクローンして npm run mcp:dev を使ってください。