NCCN Monitor
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@NCCN MonitorCheck all NCCN guidelines for updates and summarize changes."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
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
Related MCP server: Readwise MCP Enhanced
Quick Start
Prerequisites
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.yamlEdit 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.pyMCP Tools
Tool | Description |
| Check all guidelines for version updates, download PDFs, generate change reports |
| Return health status, last check time, tracked guideline count |
| List all 92 NCCN guidelines with versions and Chinese names |
| Fuzzy search by Chinese name, English name, or abbreviation |
| Add/remove/set monitored guidelines via natural language |
| Browse all guidelines organized by category |
| Download a specific guideline PDF by name (Chinese/English), archive it |
| 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 installThen 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.jsonconfigSchema are allowed in the plugin config. Settings likearchive_dirgo in the project'sconfig.yaml, not inopenclaw.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
NCCN login and PDF download logic adapted from gscfwid/NCCN_guidelines_MCP
Built with FastMCP for MCP server implementation
License
MIT
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/fshaan/nccn-monitor'
If you have feedback or need assistance with the MCP directory API, please join our Discord server