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

@toolpods/mcp-server

v0.1.0

Published

MCP server and CLI for automating Toolpods estimates and invoices.

Downloads

78

Readme

@toolpods/mcp-server

Toolpods の見積書・請求書を、Claude Desktop や Cursor などの MCP 対応クライアントから自然言語で操作するための MCP サーバー(および CLI)です。

内部的には Toolpods の API への薄いプロキシとして動作し、アカウント設定で発行した MCP トークンで認証します。

必要なもの

  • Node.js 24 以上
  • Toolpods の MCP トークン(アカウント設定 → MCPトークン から発行)

セットアップ(Claude Desktop の例)

claude_desktop_config.json に以下を追加します。

{
  "mcpServers": {
    "toolpods": {
      "command": "npx",
      "args": ["-y", "--package", "@toolpods/mcp-server", "toolpods-mcp"],
      "env": {
        "TOOLPODS_API_BASE_URL": "https://api.toolpods.io",
        "TOOLPODS_AUTH_TOKEN": "tp_mcp_xxxxxxxxxxxx"
      }
    }
  }
}

TOOLPODS_AUTH_TOKEN を発行したトークンに置き換えて、クライアントを再起動してください。Cursor / Cline など他のクライアントでも、同じ command / args / env を各クライアントの MCP 設定に記述すれば動作します。

環境変数

| 変数 | 必須 | 説明 | | --- | --- | --- | | TOOLPODS_AUTH_TOKEN | ○(※) | アカウント設定で発行した MCP トークン(tp_mcp_ で始まる) | | TOOLPODS_API_BASE_URL | - | API のベース URL。デフォルトは http://localhost:3000。本番は https://api.toolpods.io | | TOOLPODS_COOKIE_HEADER | ○(※) | トークンの代わりに既存セッション Cookie を使う場合に指定 |

TOOLPODS_AUTH_TOKENTOOLPODS_COOKIE_HEADER のどちらかが必須です。

セキュリティ上の理由から、TOOLPODS_API_BASE_URL は HTTPS または localhost のみ許可されます。

できること

発行時に選択したスコープ(documents:read / documents:write)に応じて、見積書・請求書を操作できます。

  • 見積書: 一覧・検索・取得、下書き作成 / 更新、ステータス変更、請求書への変換、履歴の閲覧 / 復元
  • 請求書: 一覧・検索・取得、下書き作成 / 更新、ステータス変更、履歴の閲覧 / 復元
  • 顧客: 検索

読み取り(documents:read)のみのトークンでは、作成・更新系の操作は実行できません。

CLI

MCP を介さず、同じ操作をコマンドラインから実行することもできます。

TOOLPODS_API_BASE_URL=https://api.toolpods.io \
TOOLPODS_AUTH_TOKEN=tp_mcp_xxxx \
npx --package @toolpods/mcp-server toolpods-cli estimates list --limit 10

引数なしで実行すると使用可能なサブコマンドが表示されます。

ライセンス

MIT