npm @comparedge/price-watch-mcpstdioMITupdated 1mo ago
That first row is a 520 percent jump on an intro rate that quietly expired. Nobody mails you about these. This MCP server hands an assistant the reviewed log of every move like it, so "did this get more expensive" stops being a guess.
What can you do with ComparEdge Price Watch?
price-watch
@ the log, two real entries
surfshark / Starter vpn 2026-05-30
- $2.49
+ $15.45
bluehost / Basic cloud-hosting 2026-07-06
- $1.99
+ $3.99
That first row is a 520 percent jump on an intro rate that quietly expired. Nobody mails you about these. This MCP server hands an assistant the reviewed log of every move like it, so "did this get more expensive" stops being a guess.
The log sits behind the pricing database, 494 tools deep. Dated rows, old and new values where a price moved, a human sign-off on each. The 30 days to July 10, 2026 carried 636 entries, 120 of them outright price moves.
What it watches
| Event | Meaning |
|---|---|
plan_price_change |
a plan's price moved; the row carries old and new values |
plan_added / plan_removed |
a tier appeared or disappeared |
plan_renamed |
same plan, new label |
billing_model_changed |
flat to usage, monthly to annual, that kind of switch |
pricing_change |
a wider correction, like a fee schedule refresh |
The week of July 6, verbatim from the feed. Bluehost raised Basic from $1.99 to $3.99. Screaming Frog cut its paid tier from $279 to $199. Namecheap dropped Stellar to $2.28. Chargebee re-read Starter as free where it used to say $250 a month. Binance refreshed its spot maker and taker schedule, and Coinbase touched both Advanced Trade fees and the Coinbase One tiers.
bluehost / Basic cloud-hosting 2026-07-06
- $1.99
+ $3.99
screaming-frog / Paid seo-tools 2026-07-06
- $279
+ $199
namecheap / Stellar cloud-hosting 2026-07-06
- $4.66
+ $2.28
chargebee / Starter payments 2026-07-08
- $250/mo
+ free
Hosting swings hardest week to week; intro rates expire, renewal ladders kick in, and the log catches each step with a date.
Ask it
Did Notion change anything this quarter?
product_changes returns dated rows for one slug. Notion right now: quiet quarter, last verified July 4. The human-readable trail is its price history page.
What went up the most this month?
biggest_increases ranks the sharpest hikes in a window. Surfshark's intro-rate expiry tops the current one.
Is anything moving in cloud hosting?
category_changes sweeps one category. Hosting logged three moves in the first week of July alone.
What does Framer charge today, and is that new?
check_price returns the current verified price plus the last change touching it. recent_changes is the same idea for the whole catalog, newest first.
How a call flows
sequenceDiagram
participant A as Assistant
participant S as price-watch
participant F as changelog feed
A->>S: biggest_increases, last 30 days
S->>F: fetch once, cache 6h
F-->>S: 636 dated entries
S-->>A: ranked hikes, old and new prices, dates
Note over A: answer cites dates,<br/>not vibes
The feed itself is public, llms-changelog.json, and the server filters it locally. Five tools, three prompts on top: recent_price_moves for a window digest, track_product for one tool's status and direction, category_price_watch for a category sweep with its sharpest hikes.
Hook it up
{
"mcpServers": {
"price-watch": {
"command": "npx",
"args": ["-y", "@comparedge/price-watch-mcp@latest"]
}
}
}
Claude Desktop reads ~/Library/Application Support/Claude/claude_desktop_config.json, Cursor takes it under Settings then MCP, VS Code with Copilot uses .vscode/mcp.json. Restart the client and five tools show up. No key, no signup, zero dependencies. Client walkthroughs sit in the setup docs.
Why trust a log
Every row passed the same verification process before it landed; the feed carries each sign-off date. Month-by-month roundups of the same data become the pricing reports, and the raw rows ship as open pricing data under CC BY 4.0.
The server fetches two public feeds from comparedge.com, caches them for six hours, filters everything on your machine, and serves the last good copy if a refresh fails. The catalog sibling and the token-cost sibling live under the same MCP family roof.
MIT. JSON-RPC 2.0 over stdio.
Install
Add ComparEdge Price Watch to your client. Pick the one you use.
claude mcp add price-watch-mcp -- npx -y @comparedge/price-watch-mcpcodex mcp add price-watch-mcp -- npx -y @comparedge/price-watch-mcpamp mcp add price-watch-mcp -- npx -y @comparedge/price-watch-mcp{
"mcpServers": {
"price-watch-mcp": {
"command": "npx",
"args": [
"-y",
"@comparedge/price-watch-mcp"
]
}
}
}Add to `claude_desktop_config.json`, then restart Claude Desktop.
{
"mcpServers": {
"price-watch-mcp": {
"command": "npx",
"args": [
"-y",
"@comparedge/price-watch-mcp"
]
}
}
}Add to `~/.cursor/mcp.json`, or `.cursor/mcp.json` for a single project.
code --add-mcp '{"name":"price-watch-mcp","command":"npx","args":["-y","@comparedge/price-watch-mcp"]}'Or add the block manually to `.vscode/mcp.json` under `servers`.
{
"mcpServers": {
"price-watch-mcp": {
"command": "npx",
"args": [
"-y",
"@comparedge/price-watch-mcp"
]
}
}
}Add to `~/.codeium/windsurf/mcp_config.json`.
{
"mcpServers": {
"price-watch-mcp": {
"command": "npx",
"args": [
"-y",
"@comparedge/price-watch-mcp"
]
}
}
}Add to `cline_mcp_settings.json` via the MCP Servers panel.
{
"mcpServers": {
"price-watch-mcp": {
"command": "npx",
"args": [
"-y",
"@comparedge/price-watch-mcp"
]
}
}
}Add to `~/.gemini/settings.json`.
{
"mcpServers": {
"price-watch-mcp": {
"type": "local",
"command": "npx",
"args": [
"-y",
"@comparedge/price-watch-mcp"
],
"tools": [
"*"
]
}
}
}Add to `~/.copilot/mcp-config.json`, or run `/mcp add` inside the CLI.
{
"context_servers": {
"price-watch-mcp": {
"command": {
"path": "npx",
"args": [
"-y",
"@comparedge/price-watch-mcp"
]
}
}
}
}Add to your Zed `settings.json`.
npx -y @comparedge/price-watch-mcpRun `goose configure`, choose **Add Extension → Command-line Extension**, and paste this command.
Score
39 / 100
Incomplete
- Documentation25/25
- Maintenance16/25
- Trust16/20
- Capability0/15
- Install experience12/15
- Documents what it does and how to connect
- Has a resolvable package or endpoint
- Exposes at least one tool, prompt or resource
- README has substantive content
- Includes a code example
- Documents its configuration
- Mentions credentials or security posture
- Last commit 52 days ago
- Has a release history
- Repository is not archived
- Licensed MIT
- Namespace verified in the official MCP registry
- Claimed by its owner
- Published under an organisation
- 0 tool(s) documented
- Provides prompt templates
- Provides resources
- 12 documented install method(s)
- Published to a package registry
- Offers a hosted endpoint — no local install
Version history
| Versions | Published |
|---|---|
| 1.0.0Latest | Jul 11, 2026 |