Featured

Deploy OpenClaw in 60 seconds — 20% off logoDeploy OpenClaw in 60 seconds — 20% off

Launch OpenClaw on Hostinger in about 60 seconds and keep your agent live 24/7. Our referral link gives you 20% off, no coupon code needed.

Launch on Hostinger
Run your Hermes agent on Hostinger, fully managed logoRun your Hermes agent on Hostinger, fully managed

Launch Hermes on Hostinger in one click, fully managed, no VPS knowledge needed. Use code ZACAARON10 for 10% off.

Launch on Hostinger
Crawl and scrape any site into clean data, 10% off logoCrawl and scrape any site into clean data, 10% off

Firecrawl crawls and scrapes any site into clean markdown for your agent. Get 1,000 free credits, and new users get 10% off their first purchase.

Try Firecrawl free
Your own AI agent, running 24/7 with QwikClaw logoYour own AI agent, running 24/7 with QwikClaw

QwikClaw sets up and runs an always-on OpenClaw agent for you. One click, no config files, no server setup.

Deploy now
One API to scrape, enrich, and extract the internet. logoOne API to scrape, enrich, and extract the internet.

Context.dev gives your agents a single API to scrape, enrich, and extract live web data — no proxies, no parsers, no maintenance.

Start building free
SetupClaw: done-for-you OpenClaw for founders & exec teams logoSetupClaw: done-for-you OpenClaw for founders & exec teams

White-glove OpenClaw for founders and exec teams (4–50+ employees): we install, harden, integrate your tools, and maintain it — secured from day one.

Get it set up for you
SEO data APIs for your agent, $1 free credit logoSEO data APIs for your agent, $1 free credit

DataForSEO gives your agent live access to SERP results, keyword data, backlinks, and on-page SEO data through one API. New accounts get a $1 credit, good for up to 20,000 keyword or backlink lookups.

Try DataForSEO free
Reach 47,000+ AI builders

A flat monthly placement in front of developers actively installing AI tools. No lock-in, cancel anytime.

Advertise here

Works with

Claude CodeClaude DesktopCursorVS CodeClineCodex CLIOpenClaw+ any MCP client

Install to Claude Code

This server doesn't publish a one-line install command. Follow the setup in the source repository.

Summary

Monitors all 92 NCCN clinical practice guidelines for version updates, downloads updated PDFs, extracts change notes, and generates AI-powered summaries via MCP protocol.

README.md

NCCN Monitor

Monitor NCCN clinical guideline updates and get notified when new versions are published.

NCCN (National Comprehensive Cancer Network) publishes clinical practice guidelines for 92 cancer types and supportive care topics. These guidelines are updated frequently, and keeping track of changes is important for oncologists, researchers, and pharmaceutical professionals.

NCCN Monitor tracks version changes across all 92 NCCN professional guidelines, downloads updated PDFs, extracts update notes, and generates AI-powered change summaries — all accessible through the MCP protocol for integration with OpenClaw or any MCP-compatible AI assistant.

Features

  • Complete coverage — monitors all 92 NCCN professional guidelines across 4 categories (Cancer by Type, Screening, Supportive Care, Specific Populations)
  • Version change detection — compares current versions against stored state, detects updates
  • PDF download + analysis — logs into NCCN (free registration), downloads updated PDFs, extracts update notes from the first few pages
  • AI-powered summaries — generates structured prompts for LLM-based change analysis (Chinese or English)
  • Health monitoring — detects silent scraping failures and alerts after consecutive errors
  • Chinese language support — all 92 guidelines have Chinese names and aliases for fuzzy search
  • Watch list management — configure which guidelines to monitor via natural language (Chinese or English)
  • On-demand PDF download — download any guideline PDF by name (Chinese or English fuzzy search)
  • Version archiving — automatically archive old versions when updates are detected, with standardized filenames (NCCN_GastricCancer_2026.V2_EN.pdf)
  • Change timeline — view the full version history for any guideline

Quick Start

Prerequisites

  • Python 3.11+
  • uv (recommended) or pip
  • NCCN account (free registration at nccn.org)

Install

git clone https://github.com/fshaan/nccn-monitor.git
cd nccn-monitor
uv venv --python 3.13 .venv
source .venv/bin/activate
uv pip install -e ".[dev]"

Configure

cp config.example.yaml config.yaml

Edit config.yaml to set your NCCN credentials and watch list. Or use environment variables:

export NCCN_USERNAME="your_email@example.com"
export NCCN_PASSWORD="your_password"

Run

# Start the MCP server (stdio transport)
python -m nccn_monitor.server

# Run unit tests
python -m pytest tests/ -v

# Run integration test (needs NCCN credentials)
python tests/integration_test.py

MCP Tools

| Tool | Description | |------|-------------| | check_updates | Check all guidelines for version updates, download PDFs, generate change reports | | get_status | Return health status, last check time, tracked guideline count | | list_guidelines | List all 92 NCCN guidelines with versions and Chinese names | | find_guideline | Fuzzy search by Chinese name, English name, or abbreviation | | update_watch_list | Add/remove/set monitored guidelines via natural language | | browse_guidelines | Browse all guidelines organized by category | | download_guideline | Download a specific guideline PDF by name (Chinese/English), archive it | | get_guideline_history | View version history and change timeline for a guideline |

OpenClaw Integration

Native Plugin (recommended)

Install as an OpenClaw plugin for direct tool registration:

# Copy plugin to OpenClaw extensions
cp -r openclaw-plugin ~/.openclaw/extensions/nccn-monitor
cd ~/.openclaw/extensions/nccn-monitor && npm install

Then add to your ~/.openclaw/openclaw.json under plugins.entries:

{
  "nccn-monitor": {
    "enabled": true,
    "config": {
      "pythonPath": "/path/to/nccn-monitor/.venv/bin/python",
      "projectDir": "/path/to/nccn-monitor"
    }
  }
}

After openclaw gateway restart, 8 tools (nccn_check_updates, nccn_get_status, etc.) appear natively in OpenClaw.

Note: Only keys declared in openclaw.plugin.json configSchema are allowed in the plugin config. Settings like archive_dir go in the project's config.yaml, not in openclaw.json.

Via mcporter (alternative)

If you prefer using mcporter as middleware:

npx mcporter config add nccn-monitor --transport stdio \
  --command "/path/to/.venv/bin/python" --args "-m" --args "nccn_monitor.server"

Then use the mcporter skill in OpenClaw to call tools.

Cron scheduling

Set up a daily cron job in OpenClaw to call nccn_check_updates (or check_updates via mcporter) for automatic monitoring.

Architecture

OpenClaw (cron + notifications)
    │
    │ MCP Protocol (stdio)
    ▼
┌─────────────────────────────────────┐
│      NCCN Monitor MCP Server        │
│                                     │
│  scraper ──→ state ──→ notifier     │
│     │                               │
│     ▼ (on version change)           │
│  downloader ──→ analyzer            │
│  (NCCN login)   (PDF extraction)    │
└─────────────────────────────────────┘

Credits

License

MIT

See related servers & alternatives →

Related MCP servers

Browse all →

Related guides

Hand-picked reading to help you choose and use Files & Docs servers.