One card per job: hours and materials logged against it, a status machine from open to invoiced, and the printed card for client sign-off. You open a card for the client, the site, what the job is, the currency and the scheduled date, and it returns a JC-YYYY-NNNN id. The crew logs hours each at their rate and materials as item, quantity and unit cost, each line valued and rounded half-up to the cent once at the moment it is logged and stored on the entry, so the running totals are plain sums of stored line values and can never drift from the lines. Hours are carried as integer hundredths, so 2.5 hours at 4,999 cents an hour is 12,498 cents, never 12,497.499999. The card moves exactly one step at a time, open to in_progress to done to invoiced to archived, every step dated in its history, and a skipped or backwards step is refused. job_card_print renders the card with a signature line for client sign-off, and job_card_summary answers a day or a week: cards touched, hours per worker, value per currency, never mixed. A card holding labor or materials cannot be deleted, because it is the record of work done; it is archived instead, and the JC number is never reissued.
In agent mode the totals are sums of the stored line values, each rounded half-up to the cent once when it was logged, so an agent recomputing a line must round the same way or not at all: 2.5 hours at 4,999 cents is 12,498, never 12,497.499999 and never a float.
| You say | Tool |
|---|---|
| Open a job card for the Kowalski bathroom refit, 14 Nowa Street flat 3: replace the consumer unit and certify, EUR, scheduled 2026-03-09. | job_card_create |
| Anna logged 7.5 hours at 45.00 an hour on the 9th, first fix. | job_card_log_labor |
| Print the card for the client to sign. | job_card_print |
On the worked card, 7.5 hours at 4,500 cents an hour is 33,750 cents and one consumer unit at 18,999 is 18,999, and the grand total is their plain sum, 52,749. The smoke suite drives create, log labor, log material, the one-step status moves, print in both formats, the summary and the delete guards over real stdio, then the free cap on the eleventh active card and the same calls passing in Pro.
The file is .vscode/mcp.json, and the key inside it is servers.
| Scope | Path |
|---|---|
| This workspace | <workspace>/.vscode/mcp.json |
| Every workspace | the user profile mcp.json, opened by the MCP: Open User Configuration command |
If you also run Claude Desktop, the shortest path there is one click: job-card.mcpb
from the latest release opens as an extension, with no JSON and no terminal.
VS Code reads its own config, so here it is:
// .vscode/mcp.json (the key is "servers")
{
"servers": {
"job-card": {
"command": "node",
"args": ["/absolute/path/to/mcp-servers/servers/job-card/dist/index.js"]
}
}
}
Or from a terminal:
code --add-mcp '{"name":"job-card","command":"node","args":["/absolute/path/to/mcp-servers/servers/job-card/dist/index.js"]}'
The node command above wants a built file. From a clone, once:
git clone https://github.com/theluckystrike/mcp-servers.git
cd mcp-servers && npm install
npm run build -w packages/mcp-license -w servers/job-card
That writes servers/job-card/dist/index.js, and its absolute path is the one argument
the config needs.
The npm packages are not published yet, so the form below returns a 404 today. It is here because it is what the entry becomes the day the publish lands, with nothing else changed:
code --add-mcp '{"name":"job-card","command":"npx","args":["-y","@theluckystrike/mcp-job-card"]}'
VS Code asks you to confirm you trust the server and its capabilities before it starts. Nothing runs until you answer.
Nothing is published to npm yet, so the working install paths are the ones above: the .mcpb bundle from the latest release, a clone and build, or the hosted URL.
There is no hosted endpoint for this one yet. MCP Job Card runs locally over stdio with the config above, which is also the only form in which it reads and writes files on your own disk. Thirty of the servers in this collection are served at https://mcp.zovo.one/mcp/<name> over MCP streamable HTTP; https://mcp.zovo.one/mcp/connect lists them and prints a ready URL for each.
The top-level key is "servers", not "mcpServers". A config pasted from a Claude Desktop or Cursor README parses cleanly, contributes no servers, and gives you no error to read, which makes it the most expensive one-word mistake here. Alongside it an "inputs" array holds secrets. The newer Agent Host reads a workspace .mcp.json instead.
Free: Ten active job cards, with labor and material entries unlimited per card and the running totals, list, get, the printable card and the daily and weekly summaries all free and unlimited on every tier. A card stops counting the moment it is archived, so the record is never metered. Pro is $19 once, verified offline.
The key is servers, not mcpServers. A config copied from a Claude Desktop README parses cleanly and contributes nothing. Rename it. On the newer Agent Host, use a workspace .mcp.json instead.
No. code --add-mcp takes the server object on the command line, and MCP: Add Server in the palette asks whether the target is Workspace or Global.
In Chat, behind the tools picker, once the server has started. Adding or changing one raises a prompt asking you to confirm you trust it; if the picker is empty, that prompt is usually still waiting.
MCP Job Card in detail · The same server in Cursor and Windsurf · Every server in VS Code · Guides · VS Code docs · Buy Pro