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

@harurow/j-quants-doc-mcp

v1.0.0

Published

J-Quants API documentation MCP server

Readme

@harurow/j-quants-doc-mcp

J-Quants APIのドキュメントを提供するMCPサーバー。Claude DesktopなどのMCPクライアントから、J-Quants APIのエンドポイント検索、詳細情報の取得、実装パターンの参照、FAQ回答などの機能を利用できます。

Note 本プロジェクトは J-Quants/j-quants-doc-mcp((株)JPX総研による公式リポジトリ)を fork し、Python 実装を Node.js (TypeScript) に書き換えたものです。 元プロジェクトは MIT License で公開されており、本リポジトリもそのライセンスを継承しています。

必須要件

  • Node.js 18以上

起動方法

npxで起動(推奨・インストール不要)

npx @harurow/j-quants-doc-mcp

インストールなしでそのまま実行できます。

グローバルインストールして起動

npm install -g @harurow/j-quants-doc-mcp

j-quants-doc-mcp

ローカルビルドで起動

git clone https://github.com/harurow/j-quants-doc-mcp.git
cd j-quants-doc-mcp
npm install
npm run build
node dist/index.js

Claude Desktopから使用

claude_desktop_config.jsonに以下を追加:

{
  "mcpServers": {
    "j-quants-doc-mcp": {
      "command": "npx",
      "args": ["-y", "@harurow/j-quants-doc-mcp"]
    }
  }
}

ローカルビルドを使用する場合:

{
  "mcpServers": {
    "j-quants-doc-mcp": {
      "command": "node",
      "args": ["/path/to/j-quants-doc-mcp/dist/index.js"]
    }
  }
}

設定ファイルの場所:

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

Cursorから使用

メニューバー「Cursor」→「Preferences」→「Cursor Settings」を開き、
左のメニュー「Tools & MCP」を選択し、「New MCP Server」をクリック。
開かれたJSONファイル(~/.cursor/mcp.json)に以下を追加:

{
  "mcpServers": {
    "j-quants-doc-mcp": {
      "command": "npx",
      "args": ["-y", "@harurow/j-quants-doc-mcp"]
    }
  }
}

以上の設定で、AIクライアントにてMCPサーバーを利用する準備が完了しました。

開発

# 依存関係のインストール
npm install

# ビルド
npm run build

# 開発用(tsx で直接実行)
npm run dev

# テスト
npm test

トラブルシューティング

Claude Desktopで認識されない

  1. 設定ファイルのJSONが正しいか確認
  2. Claude Desktopを再起動
  3. npx @harurow/j-quants-doc-mcp をターミナルで直接実行してエラーがないか確認

環境変数

  • JQUANTS_BASE_URL: APIドキュメントの取得元URLを上書きする場合に使用

クレジット

本プロジェクトは以下のリポジトリを fork して作成されています:

  • 元リポジトリ: J-Quants/j-quants-doc-mcp
  • 著作権者: JPX Market Innovation & Research, Inc.
  • ライセンス: MIT License

関連リンク