MCP SERVER · v0.1 · MIT FOR CLAUDE / CURSOR / CLINE

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:

Cursor config

Open Cursor → Settings → MCP → Add:

{
  "pricemyai": { "command": "npx", "args": ["@pricemyai/mcp-server"] }
}

Exposed tools

ToolWhat 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:

Source / issues: github.com/pricemyai/mcp-server · MIT license. Pricing data CC BY 4.0 — please link back when citing.