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

@zonuexe/techbook-mcp

v0.2.2

Published

MCP server for searching Japanese technical book bibliographic information

Readme

techbook-mcp

CI npm version License: AGPL-3.0

日本語技術書の書誌情報を出版社公式サイト・APIから取得する MCP サーバー。

Claude などの AI アシスタントから、複数の出版社を横断して技術書を検索したり、書籍の詳細情報(著者・価格・ISBN・電子書籍ストアなど)を取得できます。

使用例

技術書を検索する

「Rustの入門書を探して」

Claude が search_books ツールを呼び出し、対応する全出版社から「Rust」を含む書籍を一覧で返します。

{
  "books": [
    {
      "title": "実践Rustプログラミング入門",
      "authors": ["山口聖弘", "吉川哲史", "扇谷陽", "尾崎嶺", "豊田優貴", "中村謙弘", "フレイム"],
      "publisher": "秀和システム",
      "publishedAt": "2020-08-22",
      "isbn": "9784798061702",
      "url": "https://www.seshop.com/product/detail/22342",
      "price": 3740,
      "ebookStores": [
        {
          "name": "SEshop",
          "url": "https://www.seshop.com/product/detail/22342",
          "drm": "social",
          "drmLabel": "DRMフリー (ソーシャル)"
        }
      ]
    }
  ]
}

特定の出版社だけを検索する

「技術評論社のDocker本を調べて」

// search_books({ title: "Docker", publisher: "gihyo" })

書籍の詳細情報を取得する

「この URL の本の詳細を教えて: https://gihyo.jp/book/2024/978-4-297-14000-6」

Claude が get_book_detail ツールで著者・価格・ISBN・購入可能なストア情報をまとめて取得します。

対応出版社を確認する

「どの出版社に対応していますか?」

Claude が list_publishers ツールを呼び出し、出版社名と ID の一覧を返します。

対応出版社

| 出版社 | ID | |--------|-----| | BOOK TECH | book-tech | | ボーンデジタル | born-digital | | コロナ社 | coronasha | | 技術評論社 | gihyo | | ラムダノート | lambdanote | | マナティ(マイナビ出版直販) | manatee | | 丸善出版 | maruzen-publishing | | オプトロニクス社 | optronics | | オライリー・ジャパン | oreilly-japan | | PEAKS | peaks | | パーソナルメディア | personal-media | | ラトルズ | rutles | | サイエンス社 | saiensu | | SEshop(翔泳社) | seshop | | 達人出版会 | tatsu-zine | | 技術書典オンラインマーケット | techbookfest |

MCPツール

search_books

書名・著者名で複数の出版社を横断検索します。

| パラメータ | 型 | 説明 | |------------|-----|------| | title | string | 書名(部分一致) | | author | string | 著者名(部分一致) | | publisher | string | 出版社ID(省略時は全社検索) | | limit | number | 1出版社あたりの最大件数(デフォルト: 10、最大: 50) |

get_book_detail

書籍の公式ページ URL から詳細な書誌情報を取得します。

| パラメータ | 型 | 説明 | |------------|-----|------| | url | string | 書籍の公式ページ URL |

list_publishers

対応出版社の一覧と ID を返します。

セットアップ

Claude Desktop

claude_desktop_config.json に以下を追加してください。

{
  "mcpServers": {
    "techbook-mcp": {
      "command": "npx",
      "args": ["-y", "@zonuexe/techbook-mcp"]
    }
  }
}

設定ファイルの場所:

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

Claude Code

claude mcp add techbook-mcp -- npx -y @zonuexe/techbook-mcp

開発

npm install
npm test        # ユニットテスト実行(Vitest)
npm run build   # TypeScript コンパイル → dist/

ランタイム

| ランタイム | 起動方法 | |----------|---------| | Node.js 22+ | node dist/main.js | | Bun | bun src/main.ts | | Deno | deno run --allow-net src/main.ts |

ライセンス

AGPL-3.0-or-later