MCP Server
Wire PriceMyAI's verified pricing into any Model Context Protocol client. The LLM gets four tools — list tools we track, fetch any one tool's full pricing record, read the current price index, and get the dated change log. All data pulled live from pricemyai.com, so the LLM always sees the latest monthly-verified prices.
Install
▍ ONE-LINE INSTALL
npx @pricemyai/mcp-server
Claude Desktop config
Edit
~/Library/Application Support/Claude/claude_desktop_config.json
(Mac) or
%APPDATA%\Claude\claude_desktop_config.json
(Windows):
{
"mcpServers": {
"pricemyai": {
"command": "npx",
"args": ["@pricemyai/mcp-server"]
}
}
} Restart Claude Desktop. You can now ask:
- "What's GitHub Copilot pricing right now?"
- "Has Cursor raised prices this year?"
- "What's the median monthly cost of an AI subscription?"
- "Show me every reprice this month"
Cursor config
Open Cursor → Settings → MCP → Add:
{
"pricemyai": { "command": "npx", "args": ["@pricemyai/mcp-server"] }
} Exposed tools
| Tool | What it does |
|---|---|
list_tools | Enumerate every AI tool we track, with category and entry price. Optional category filter. |
get_pricing | Full record for one tool by slug: all plans, free tier, unit cost, third-party quality scores, watch-outs, full price history. |
get_price_index | The PriceMyAI Entry Price Index — current market-wide median and per-category breakdown. |
get_changes | Dated change log: reprices, stale-data alerts, discontinuations. Optional slug filter and limit. |
Underlying HTTP endpoints
The MCP server is a thin wrapper. Same data is reachable from any HTTP client with CORS open:
/price-index.json— market-wide index, per-category breakdown/changes.json— Pricing Watch log/data/{slug}.json— full record for one tool (e.g./data/github-copilot.json)/llms.txt— every tool, one-line summaries/changes.xml— Pricing Watch as RSS 2.0
Source / issues: github.com/pricemyai/mcp-server · MIT license. Pricing data CC BY 4.0 — please link back when citing.