blacksmith-usage-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@blacksmith-usage-mcpshow my CI costs for this month"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
blacksmith-usage-mcp
A local MCP server that exposes Blacksmith.sh's usage & cost data, which Blacksmith does not officially publish as an API. It lets you pull CI spend into agents, alerts, dashboards, or scheduled reports instead of eyeballing the web UI.
Unofficial / unaffiliated. It replays your own authenticated dashboard session against Blacksmith's private backend. Endpoints may change without notice.
What it gives you
Read-only tools over the metrics the dashboard itself uses:
Tool | Returns |
| session identity (auth check) |
| your GitHub orgs/installations |
| jobs, minutes, $ cost for a month |
| per-day jobs / minutes / cost |
| cost per repository |
| cost per runner type |
| Docker-cache storage $ + GB-hours (often the biggest line item) |
| billable vs included-free minutes |
| live vCPU/jobs right now |
| usage over time |
| one-shot month report (totals + free-tier headroom + top repos/runners) |
Every tool takes an optional month ("YYYY-MM", default current) and org
(defaults to $BLACKSMITH_ORG).
How auth works
Blacksmith's dashboard (app.blacksmith.sh) talks to a Laravel backend at
dashboardbackend.blacksmith.sh/api. There is no public API key or bearer
token — auth is a stateful session cookie (blacksmith_session, httponly,
~14-day rolling). GitHub OAuth only bootstraps that cookie, and the
code → session exchange uses Blacksmith's server-side client secret, so the
OAuth flow can't be replayed headlessly.
So the model is: sign in once via GitHub, harvest the cookie, replay it. Two non-obvious details this server handles for you:
The backend is Laravel Sanctum (stateful), so every request sends
Origin: https://app.blacksmith.sh. Without that header the cookie is rejected with a 401.The server rotates the session cookie on every response; the client persists the fresh value back to storage, so the session stays alive as long as it's used within ~14 days. The durable
remember_web_*cookie is harvested too.
Setup
git clone https://github.com/dholliday3/blacksmith-usage-mcp.git
cd blacksmith-usage-mcp
pnpm install # or: npm install
pnpm exec playwright install chromium # one-time, for the login helper
pnpm login # opens a browser; sign in with GitHub
pnpm check # prints a cost overview — confirms it workspnpm login uses a persistent browser profile under .auth/ (gitignored) so
your GitHub session sticks around and future refreshes usually skip 2FA. Re-run
pnpm login whenever a tool returns a "session expired" error (~every 14 days
if unused).
Set your org once so you can omit it from every call:
export BLACKSMITH_ORG=your-github-org-slug # find it via `blacksmith_list_orgs`Register with an MCP client
Claude Code:
claude mcp add blacksmith-usage -s user -- pnpm --dir /abs/path/to/blacksmith-usage-mcp startGeneric mcp.json:
{
"mcpServers": {
"blacksmith-usage": {
"command": "pnpm",
"args": ["--dir", "/abs/path/to/blacksmith-usage-mcp", "start"],
"env": { "BLACKSMITH_ORG": "your-github-org-slug" }
}
}
}Where the session is stored
In priority order:
$BLACKSMITH_SESSION_JSON— full session JSON inline. Handy for CI / headless, where you inject a cookie harvested elsewhere.macOS Keychain (
security, serviceblacksmith-session-cookie) — default on macOS.A
0600file at$BLACKSMITH_SESSION_FILE, or${XDG_CONFIG_HOME:-~/.config}/blacksmith-usage-mcp/session.json— default on Linux/Windows, or whenever$BLACKSMITH_SESSION_FILEis set.
The cookie is a live credential to your Blacksmith account and is never
written into the repo. .gitignore blocks .auth/ and any stray
.session.json.
Notes
Read-only by design — no tool mutates Blacksmith state. (Writes would require sending the
X-XSRF-TOKENheader, which this client deliberately never does.)Schemas use
.passthrough(), so if Blacksmith adds fields they surface rather than break parsing.Requires Node ≥ 20 (uses
fetch+Headers.getSetCookie).
Blacksmith's own LLM docs
Handy to feed an agent alongside this server (product docs, not the usage API):
License
MIT — see LICENSE.
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/dholliday3/blacksmith-usage-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server