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

@kinginsun/mcp-probot-hdi

v0.0.9

Published

A CLI tool for checking drug-drug and herb-drug interactions using the Model Context Protocol

Readme

mcp-probot-hdi

An MCP (Model Context Protocol) server for querying herb-drug and drug-drug interactions from the Probot HDI database.

The server speaks MCP over stdio and forwards tool calls to the Cancer Probot HTTP MCP API (POST with JSON body and Authorization: Bearer).

Installation

npm install -g @kinginsun/mcp-probot-hdi

Configuration

Token (required)

Create a personal API token in your Cancer Probot account (user center). The plaintext value starts with pb- and is shown only once when created.

Set it via:

export PROBOT_MCP_TOKEN=pb-your_token_here

The server sends this value as the HTTP header Authorization: Bearer <token>. Tokens must start with pb-; other values are rejected at startup.

API base URL (optional)

By default requests go to https://cancer.probot.hk/probot_api/mcp (no trailing slash). Override if you need another deployment:

export PROBOT_HDI_API_BASE=https://example.com/probot_api/mcp

Cursor / Claude Desktop

Add to your MCP configuration:

{
  "mcpServers": {
    "probot-hdi": {
      "command": "npx",
      "args": ["@kinginsun/mcp-probot-hdi"],
      "env": {
        "PROBOT_MCP_TOKEN": "pb-your_token_here"
      }
    }
  }
}

Tools

probot-hdi

Search herb-drug or drug-drug interactions by drug/herb names.

| Parameter | Type | Required | Description | | --------- | ------ | -------- | --------------------------------------------------------------------------------------------- | | drug1 | string | Yes | Drug/herb name, or multiple aliases in one string separated by ASCII \| (see JSON examples) | | drug2 | string | No | Second drug/herb; same pipe-separated alias convention | | maxRows | number | No | Maximum results to return (default: 10) |

When only drug1 is provided, the API returns all known interactions involving that item (up to maxRows).

Example:

{
  "name": "probot-hdi",
  "arguments": {
    "drug1": "aspirin|阿司匹林|乙酰水杨酸",
    "drug2": "ginkgo biloba"
  }
}

probot-search-item

Look up a drug or herb by name and return its item_id. Use this to resolve drug/herb names to unique identifiers before querying interactions by ID.

| Parameter | Type | Required | Description | | --------- | ------ | -------- | ----------------------------------------------------- | | drug | string | Yes | Drug/herb name, or multiple aliases separated by \| |

Example:

{
  "name": "probot-search-item",
  "arguments": {
    "drug": "aspirin|阿司匹林"
  }
}

probot-hdi-by-id

Search herb-drug or drug-drug interactions by item_id(s) obtained from probot-search-item.

| Parameter | Type | Required | Description | | ---------- | ------ | -------- | --------------------------------------- | | item_id1 | string | Yes | First item_id | | item_id2 | string | No | Second item_id | | maxRows | number | No | Maximum results to return (default: 10) |

When only item_id1 is provided, the API returns all known interactions for that item (up to maxRows).

Example:

{
  "name": "probot-hdi-by-id",
  "arguments": {
    "item_id1": "123",
    "item_id2": "456"
  }
}

Typical Workflow

  1. Direct query — Use probot-hdi with drug names for a quick one-step lookup.
  2. Two-step query — Use probot-search-item to resolve names to item_id, then use probot-hdi-by-id for precise interaction queries. This is useful when you need to verify which drug was matched or reuse the same ID across multiple queries.

Requirements

  • Node.js >= 18.0.0
  • A valid personal token (pb-…) in PROBOT_MCP_TOKEN

License

MIT