Skip to main content
Glama
kindrat86

cost-of-work-index

The Cost of Work Index

Arbeitskosten pro Einheit für menschliche Arbeit im Vergleich zu den Kosten für KI-Mitarbeiter bei 13 Back-Office-Aufgaben in drei Märkten (Vereinigte Staaten, Griechenland, Ukraine). Ein kleiner, vollständig mit Quellen belegter Datensatz, veröffentlicht unter CC BY 4.0, mit einem unter MIT-Lizenz stehenden MCP-Server.

Was dieser Index misst

Für jede Aufgabe („Lieferantenrechnung erfassen“, „überfällige Rechnung eintreiben“, „einen Kandidaten sichten“) hält der Datensatz zwei Zahlen fest:

  • Kosten für menschliche Arbeit pro Einheit: die veröffentlichten Stundenarbeitskosten für diesen Markt, geteilt durch die Minuten menschlicher Arbeit, die die Aufgabe erfordert.

  • KI-Kosten pro Einheit: der beworbene Preis pro Einheit des passenden Nika-KI-Mitarbeiters.

Der multiple ist das Verhältnis aus beiden. Ein Wert über 1 bedeutet, dass der KI-Mitarbeiter pro Einheit günstiger ist; unter 1 ist eine Person günstiger.

Related MCP server: Relaystation

Was die Daten enthalten

  • 3 Märkte: Vereinigte Staaten (USD), Griechenland (EUR), Ukraine (UAH)

  • 13 Aufgaben aus Back-Office-Bereichen (Buchhaltung, Terminplanung, Support, Mahnwesen, Angebotserstellung, Kandidatensichtung)

  • 39 Kostenvergleiche Mensch vs. KI (13 Aufgaben × 3 Märkte)

  • 3 Stundenarbeitskostenwerte, einer je Markt

Die zwei Arten von Zahlen

Der Datensatz weist eindeutig aus, welche Zahlen Statistiken und welche Schätzungen sind:

  • Mit Quelle: verfügt über einen Herausgeber, eine auflösbare URL, einen Bezugszeitraum und ein Abrufdatum. Die drei Stundenarbeitskostenwerte sind aus BLS, Eurostat und Derzhstat zitiert.

  • Schätzung: Bei den Minuten-pro-Einheit-Werten handelt es sich um Nikas eigene Schätzungen; sie sind als solche gekennzeichnet und mit ihrer schriftlich fixierten Grundlage je Aufgabe dokumentiert.

Quellen

#

Herausgeber

Wert

Zeitraum

1

U.S. Bureau of Labor Statistics

Median-Stundenlohn in der Buchhaltung (23,66 $)

Mai 2024

2

Eurostat

Griechische Stundenarbeitskosten, gesamte Wirtschaft (16,70 €)

2024

3

Derzhstat (Ukraine)

Durchschnittlicher Monatslohn (196,78 UAH/h)

Juni 2026

Einschränkungen (im Datensatz selbst enthalten)

  • humanMinutesPerUnit ist eine Schätzung von Nika, keine offizielle Statistik. Die Grundlage ist je Aufgabe in humanMinutesBasis angegeben.

  • Die Stundenarbeitskosten sind über die Märkte hinweg nicht direkt vergleichbar: Die Werte für die USA und die Ukraine sind reine Bruttolöhne, während der griechische Wert vollständig belastet ist und bereits Arbeitgeberbeiträge enthält.

  • Bei einigen Aufgaben in einigen Märkten ist eine Person pro Einheit günstiger als der KI-Mitarbeiter. Diese Zeilen sind real und werden nicht herausgefiltert. Prüfen Sie multiple.

  • Mitarbeiter, die als waitlist markiert sind, sind noch nicht aktiv. Ihr Preis pro Einheit ist der beworbene Preis und kein gemessener.

Lizenz

  • Code (src/, Dockerfile): MIT. Siehe LICENSE.

  • Daten (data/): CC BY 4.0: frei verwendbar und mit Namensnennung zitierbar.

Zitierweise

Nika (hirenika.com). The Cost of Work Index, version 2026.3, 2026-08-04. https://hirenika.com/cost-of-work

Dateien

  • data/cost-of-work-2026.3.json: vollständiger Datensatz (Aufgaben, Märkte, Quellen, Einschränkungen)

  • data/cost-of-work-2026.3.csv: tabellarischer Exort

Ressourcen

MCP-Server

Der Index wird als MCP-Server ausgeliefert, sodass Agents ihn direkt abfragen können:

npx -y nika-cost-of-work-mcp

Fünf Tools: alle Aufgaben auflisten, die Kosten pro Einheit für eine Aufgabe und einen Markt abrufen, monatliche/jährliche Kosten anhand einer Menge schätzen, die offiziellen Quellen auflisten und den gesamten Index als JSON exportieren. Der Datensatz ist integriert, sodass der Server offline antwortet; ein API-Schlüssel ist nicht erforderlich. Der Quellcode des Servers liegt in diesem Repository (src/, Dockerfile), und das npm-Paket wird aus dem hirenika-Repository veröffentlicht, in dem der Daten-Snapshot erzeugt und nie von Hand bearbeitet wird.

Available Tools

5 tools
estimate_annual_costAnnualise a task volumeA
Read-only

Turn a monthly volume of a task into monthly and annual cost, for a person and for the AI employee, in one market. Use this when someone asks what a workload costs them per year, or what they would save.

ParametersJSON Schema
NameRequiredDescriptionDefault
marketYesMarket: `us`, `gr` or `ua` (aliases `en`, `el`, `uk` are also accepted).
taskIdYesTask id from `list_work_tasks`. One of: invoice-entry, lead-callback, appointment-rescue, review-reply, receivables-chase, returns-case, cod-confirmation, customer-winback, supplier-price-check, quote-build, shift-schedule, candidate-screening, service-followup.
unitsPerMonthYesHow many units of this task happen per month, e.g. 120 invoices.

TDQS

A4.2/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations include readOnlyHint=true and openWorldHint=false, covering the safety profile. The description adds meaningful behavioral context by specifying that the output covers both monthly and annual costs for both a person and the AI employee, within one market. This goes beyond a simple read-only declaration.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences only. The first sentence front-loads the core function, and the second states when to use it. Every word earns its place; no redundancy or fluff.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the lack of an output schema, the description compensates by indicating the tool returns monthly and annual costs for both person and AI employee. The inputs are fully documented in the schema, and the purpose is clear. It does not detail currency or formatting, but for a prediction/estimation tool the description is sufficient for selection.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, with all three parameters well-described. The description reinforces the meaning of unitsPerMonth ('monthly volume') and market ('one market') but does not add new parameter-level details beyond the schema. This is baseline-appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('Turn') and clearly states the resource and scope: 'a monthly volume of a task into monthly and annual cost, for a person and for the AI employee, in one market.' This distinguishes it from siblings like get_task_cost, which likely provides only a single cost figure, and list_work_tasks, which lists tasks.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The second sentence provides explicit usage context: 'Use this when someone asks what a workload costs them per year, or what they would save.' It does not explicitly mention when not to use it or name alternatives, but the guidance is clear enough for the intended use case.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_cost_of_work_indexGet the whole Index as JSONA
Read-only

The complete Cost of Work Index as JSON — every task, every market, every source, plus the caveats. Use this when you need the dataset itself rather than one answer; prefer get_task_cost for a single figure.

ParametersJSON Schema
NameRequiredDescriptionDefault
marketNoOptional: restrict the per-market figures to one market (`us`, `gr` or `ua`).

TDQS

A4.2/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, covering the safety profile. The description adds that the return format is JSON and that it includes caveats, but does not elaborate on pagination, size, or other behavioral details. Since the annotation covers the primary behavioral concern (read-only), the description adds minimal extra context.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences, front-loaded with the tool's purpose and followed by usage guidance. Every word earns its place, with no tautology or filler.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool is simple (0 required parameters) with a read-only annotation and no output schema. The description adequately communicates the scope of the returned dataset ('every task, every market, every source') and the presence of caveats. While the exact structure of the JSON is not described, it is not essential for a simple retrieval tool. The only minor gap is the vague 'caveats' reference.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The sole parameter `market` is fully documented in the input schema, including its optional nature and valid values (`us`, `gr`, `ua`). The description does not add additional meaning beyond the schema, so baseline 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's output as the complete Cost of Work Index as JSON, specifying 'every task, every market, every source'. It differentiates from sibling get_task_cost by noting when to prefer a single figure. The title 'Get the whole Index as JSON' reinforces the specific verb and resource.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly states the use case: 'when you need the dataset itself rather than one answer'. It names an alternative tool, `get_task_cost`, for a single figure, providing a clear when-to-use and when-not-to-use scenario. This meets the threshold for explicit usage guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

get_task_costCost of one task, one marketA
Read-only

What one unit of a given task costs in a given market — the human cost per unit, the AI cost per unit, and the ratio between them, with the source behind every figure. Markets: us (United States), gr (Greece), ua (Ukraine). Note that uk means Ukraine in this dataset, not the United Kingdom.

ParametersJSON Schema
NameRequiredDescriptionDefault
marketYesMarket: `us`, `gr` or `ua` (aliases `en`, `el`, `uk` are also accepted).
taskIdYesTask id from `list_work_tasks`. One of: invoice-entry, lead-callback, appointment-rescue, review-reply, receivables-chase, returns-case, cod-confirmation, customer-winback, supplier-price-check, quote-build, shift-schedule, candidate-screening, service-followup.

TDQS

A4.3/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, and the description adds meaningful behavioral context: the exact output components (human/AI cost, ratio, source) and the important market naming exception. This goes beyond the structured fields without contradicting them.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences, both information-dense: the first defines the output, the second explains market values and a critical caveat. No wasted words or redundancy with the schema.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the simple read-only nature, two parameters, and no output schema, the description fully covers the return values and the market ambiguity. It leaves no significant gaps for a caller to understand what they will receive.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100%, so baseline is 3. The description adds country names for market codes and explicitly warns that 'uk' means Ukraine, enhancing the schema's terse alias list. This extra clarity justifies a score above baseline.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's function: retrieving the cost of one unit of a task in a specific market, and enumerates the returned figures (human cost, AI cost, ratio, source). This distinguishes it from sibling tools like estimate_annual_cost, which implies a broader annual scope.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage for single task-market unit costs but does not explicitly contrast with sibling tools like estimate_annual_cost or get_cost_of_work_index. It offers useful context about market codes and the 'uk' caveat, but no when-to-use/when-not-to-use guidance relative to alternatives.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_sourcesList the Index sourcesA
Read-only

The official statistics behind the human-cost side of the Index — publisher, exact release title, resolvable URL, reference period, and how the published figure became the number used here. Call this when you need to cite or verify a figure.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.3/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The annotation readOnlyHint=true already indicates a safe read operation. The description adds context about data provenance and contents but doesn't disclose additional behavioral details like pagination or ordering, so it remains at a baseline level.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences, front-loaded with the action, and every sentence adds value—no fluff.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool is a simple list operation, and the description covers what data is returned and when to use it. No output schema exists, but the description sufficiently conveys the tool's purpose and result.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

With zero parameters, the schema already covers everything. The baseline for 0 params is 4, and the description adds no parameter-specific information.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states 'List the Index sources' and details the specific fields (publisher, release title, URL, reference period, and how the published figure became the number used here), making it distinct from sibling tools about tasks/costs.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It explicitly instructs 'Call this when you need to cite or verify a figure,' providing a clear use case. It doesn't mention alternatives, but the context is unambiguous given the distinct sibling tools.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

list_work_tasksList covered tasksA
Read-only

List every task in the Cost of Work Index — the task id, what one unit is, and which AI employee performs it. Call this first when you do not already know the task id you need.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.5/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, and the description adds useful behavioral context by stating the tool lists 'every' task and specifying the output fields. This goes beyond the annotation without contradicting it, though it does not disclose pagination or result format details.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is two sentences with a front-loaded verb 'List,' followed by the key output fields and a clear usage directive. Every sentence serves a purpose, with no redundant or filler content.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a zero-parameter read-only listing tool, the description fully covers what it does, what it returns, and when to call it. The absence of an output schema is acceptable because the described fields are sufficient for the agent's needs.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has zero parameters, and the input schema is empty. The baseline for 0 params is 4, and the description does not need to add parameter semantics because there are none to describe.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses the specific verb 'List' with the resource 'every task in the Cost of Work Index' and enumerates the returned fields (task id, unit, AI employee). This clearly distinguishes it from sibling tools like get_task_cost or estimate_annual_cost, which focus on cost calculations rather than listing tasks.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly says 'Call this first when you do not already know the task id you need,' providing a clear condition for use. It implies a sequencing among tools but does not explicitly name alternative tools or when not to use this tool, so it falls short of a perfect 5.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 5 tool updatesv2026.3.0
    • First observedestimate_annual_cost
    • First observedget_cost_of_work_index
    • First observedget_task_cost
    • First observedlist_sources
    • First observedlist_work_tasks

TDQS

A4.5/5.0
Disambiguation5/5

Each tool serves a distinct function: enumerating tasks, fetching a specific cost, computing annual projections, listing sources, and dumping the whole dataset. There is no meaningful overlap; the only similar tools are list_work_tasks and get_cost_of_work_index, but the latter is explicitly for bulk retrieval while the former is a lightweight overview.

Naming Consistency5/5

All names follow a consistent verb_noun structure with snake_case. The verbs list/get/estimate clearly signal the action, and the nouns match the resource (work_tasks, task_cost, annual_cost, sources, cost_of_work_index). No mixed conventions or vague verbs are present.

Tool Count5/5

With 5 tools, the set is tightly scoped to the server's purpose of querying a cost index. Each tool covers a necessary operation without redundancy or bloat, making the count well-proportioned.

Completeness5/5

The server appears to be a read-only index, so the surface covers all natural usage patterns: discovering tasks, retrieving single costs, computing annual estimates, citing sources, and obtaining the full dataset. No obvious gaps exist for the intended domain.

Maintenance

ActivityMaintained
ResponsivenessNo issues

Related MCP Connectors

Related MCP Servers

  • A
    license
    A
    quality
    C
    maintenance
    Real US & Canada dental price data for AI assistants: average costs by procedure, state and city, insurance acceptance, and cheapest-state lookups — backed by open datasets (CC BY 4.0, permanent DOIs).
    4
    65
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    160 tools that do that heavy lifting - storage, agent-to-agent collaboration, document conversions, identity verification -- almost all priced under a tenth of a cent or less per call.
    MIT
  • A
    license
    C
    quality
    B
    maintenance
    Deterministic Odoo ERP calculators: implementation, migration and upgrade cost, ROI and TCO, US/Canada/EU sales tax and VAT, Canadian payroll source deductions, and inventory maths (reorder point, safety stock, EOQ, landed cost, OEE). 24 tools, each a pure function, the numbers are arithmetic rather than a model's guess. Hosted remote server, no install and no API key; a stdio bridge is included
    24
    MIT

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/kindrat86/cost-of-work-index'

If you have feedback or need assistance with the MCP directory API, please join our Discord server