Priceparse — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Priceparse (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Any SaaS pricing page → clean JSON. Built for AI agents.
PriceParse is a remote API + MCP server that extracts structured pricing data from any SaaS pricing page URL. Send a URL, get tiers, prices, features, limits, and addons as a deterministic JSON schema.
https://api.priceparse.comPricing pages are built for human persuasion, not machine consumption. Dynamic JavaScript, interactive calculators, and feature toggles break naive scrapers. PriceParse handles all of that and returns the same JSON schema for every page — Linear, HubSpot, Datadog, whatever.
curl -X POST https://api.priceparse.com/v1/extract \
-H "Authorization: Bearer YOUR_KEY" \
-H "Content-Type: application/json" \
-d '{"url": "https://linear.app/pricing"}'Returns:
{
"tiers": [
{
"name": "Free",
"price": 0,
"currency": "USD",
"billing_cycle": "monthly",
"features": [...],
"limits": {...}
},
...
],
"addons": [],
"confidence": 0.85
}Hub pages without real tiers (e.g. AWS pricing) return HTTP 422 with hub_page_detected and a low confidence score, instead of returning garbage.
Get an API key by emailing [email protected] — free tier is 100 extractions/month.
Remote MCP endpoint: https://api.priceparse.com/mcp/ (note the trailing slash).
Add this to your MCP client config:
{
"mcpServers": {
"priceparse": {
"url": "https://api.priceparse.com/mcp/",
"headers": {
"Authorization": "Bearer YOUR_KEY"
}
}
}
}Exposes one tool: extract_pricing(url: str) -> dict.
Compatible with Claude Desktop, Cursor, Cline, Smithery, and any client supporting Streamable HTTP transport.
uv sync
uv run python -m src.mcp_server| Endpoint | Method | Description |
|---|---|---|
/ | GET | Health check |
/v1/extract | POST | Extract pricing from a URL |
/mcp/ | POST | MCP Streamable HTTP transport |
All endpoints except / require a Bearer token in the Authorization header.
| Plan | Price | Extractions / mo |
|---|---|---|
| Free | $0 | 100 |
| Hobby | $19 | 1,500 |
| Team | $79 | 15,000 |
| Scale | $0.005/call | usage-based, $200/mo min |
| Enterprise | Custom | Unlimited + SLA |
Failed extractions don't count against quota.
FastAPI · MCP Python SDK · Anthropic Claude Sonnet 4.6 · Firecrawl (scraping) · Upstash Redis (response cache, 24h TTL) · Railway (deploy).
Proprietary. Contact [email protected] for licensing terms.
Built by Lars Hiensch.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.