
Company News
Jerod Santo Joins Socket as Head of Media
Allow myself to introduce... myself.
@promptspend/mcp
Advanced tools
LLM pricing for coding agents — every price carries its source and the date it was confirmed.
LLM pricing for coding agents — every price carries its source and the date it was last confirmed.
There are already MCP servers that will tell you what a model costs. This one tells you where the number came from, when it was last checked, and which numbers two sources disagree about. And it will cost a described workload rather than just quoting a rate, because the arithmetic between "$3 per million tokens" and "$4,955 a month" is where nearly every estimate goes wrong.
claude mcp add promptspend -- npx -y @promptspend/mcp
No API key. No account. MIT.
Every price comes with its paperwork.
// Real output, not an illustration: `get_price` for gpt-5 on 2026-08-03.
{
"model": "gpt-5",
"input_per_million_usd": 1.25,
"output_per_million_usd": 10,
"provenance": {
"source": "vendor",
"source_description": "Hand-verified against the provider's own published pricing page.",
"last_verified": "2026-08-03",
"disputed": false,
"upstream_stale": false,
"confidence": "Confirmed against the provider's own pricing page on 2026-08-03.",
"verified_url": "https://developers.openai.com/api/docs/pricing",
},
}
last_verified moves as rows are re-read, so the date here will age; the shape
will not. What is worth checking is that the block is present at all — a price
without one is a price you cannot audit.
That matters more to an agent than to a person. Someone reading a web page sees the interface around the number and forms their own view of how much to trust it. A model handed a bare figure has nothing, and will repeat it with whatever confidence the phrasing implies. Given the date and the source it can say "as of 1 August, per OpenAI's pricing page" instead of stating a number as though it were timeless.
And it says when it does not know. Where two sources disagree and no human
has adjudicated, the response is marked disputed: true with both figures,
rather than quietly picking one:
DISPUTED — two sources disagree on this price and no human has adjudicated it.
The figure shown is the primary feed's number, last confirmed 2026-08-02.
Treat it as indicative and say so.
estimate_cost runs promptspend.com's own cost
engine — imported, not reimplemented, so a number this server reports and a
number the website shows cannot drift apart. A test asserts it.
It accounts for the things hand-rolled estimates miss:
"What would a support assistant cost at 4,000 conversations a day on GPT-5 versus DeepSeek V3.2?"
MCP tool definitions are loaded into your context on every turn, for as long as the server is connected. A heavy server can add thousands of tokens to every message, which is why the advice going round is to prefer a CLI for read-only data.
A pricing server that quietly taxes every turn, to tell you about token costs, would be an easy and deserved joke. So:
This server adds ~700 tokens per turn. Three tools, short descriptions, budgeted at 900 and checked in CI by
npm run check:footprint.
If that number ever stops being true, the build fails — the README figure is asserted against the actual manifest, not typed once and trusted.
| Tool | What it answers |
|---|---|
get_price | What does this model cost, and how much should I trust that? |
estimate_cost | What will my workload actually cost per month on each? |
find_cheaper | What could I test that is cheaper and not obviously worse? |
find_cheaper returns candidates to test, never a recommendation — the
capability index behind it is an illustrative estimate, not a benchmark, and the
response says so.
Claude Code
claude mcp add promptspend -- npx -y @promptspend/mcp
Cursor / Claude Desktop / Windsurf — in mcp.json:
{ "mcpServers": { "promptspend": { "command": "npx", "args": ["-y", "@promptspend/mcp"] } } }
Standard-tier, global-endpoint list prices in USD. Not modelled: regional and data-residency premiums, priority tiers, server-side tool-call fees, fine-tuning, and negotiated or committed-use discounts.
Part of PromptSpend — MIT. Found a wrong price? That is the most serious class of bug this project can have. Open an issue.
FAQs
LLM pricing for coding agents — every price carries its source and the date it was confirmed.
The npm package @promptspend/mcp receives a total of 44 weekly downloads. As such, @promptspend/mcp popularity was classified as not popular.
We found that @promptspend/mcp demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.

Company News
Allow myself to introduce... myself.

Research
/Security News
A Twitch browser extension on Chrome and Firefox forwards users’ live OAuth session tokens through proxies controlled by a Russian bot service.

Security News
Anthropic found biased reasoning and recklessness drove Claude Mythos 5 to publish malware on PyPI and compromise a security vendor.