Skip to main content
Glama
kindrat86

cost-of-work-index

The Cost of Work Index

每单位人力劳动成本与 AI 员工成本对比,覆盖三个市场(美国、希腊、乌克兰)中的 13 项后台任务。这是一个小型、来源完整的数据集,以 CC BY 4.0 发布,并附带一个采用 MIT 许可的 MCP 服务器。

衡量内容

对于每项任务(“录入供应商发票”、“催收逾期发票”、“筛选一位候选人”),数据集记录两个数字:

  • 每单位人力成本:该市场公布的每小时劳动成本除以任务所需的人工分钟数。

  • 每单位 AI 成本:对应的 Nika AI 员工公布的每单位价格。

倍数(multiple) 是两者的比值。倍数大于 1 表示 AI 员工每单位更便宜;小于 1 则表示人工更便宜。

Related MCP server: Relaystation

数据内容

  • 3 个市场:美国(USD)、希腊(EUR)、乌克兰(UAH)

  • 13 项任务,覆盖后台职能(簿记、日程安排、客户支持、催收、报价、候选人筛选)

  • 39 项人工与 AI 成本对比(13 项任务 × 3 个市场)

  • 3 个每小时劳动成本数据,每个市场一个

两类数字

数据集明确区分哪些数字是统计数据、哪些是估算值:

  • 引用(Cited):带有发布者、可解析的 URL、参考期和检索日期。三个每小时劳动成本引自 BLS、Eurostat 和 Derzhstat。

  • 估算(Estimate):每单位人工分钟数数据是 Nika 自身的估算,已作相应标注,并记录了每项任务的书面依据。

数据来源

#

发布者

数值

时期

1

U.S. Bureau of Labor Statistics

簿记中位数时薪($23.66)

May 2024

2

Eurostat

希腊全经济每小时劳动成本(€16.70)

2024

3

Derzhstat(乌克兰)

平均月工资(UAH 196.78/h)

June 2026

注意事项(数据集本身已注明)

  • humanMinutesPerUnit 是 Nika 的估算值,而非官方统计数字。其依据按任务记录在 humanMinutesBasis 中。

  • 各市场的每小时劳动成本并非同类可比:美国与乌克兰的数据仅为毛工资,而希腊的数据为全口径成本,已包含雇主缴款。

  • 在某些市场的某些任务中,人工每单位成本低于 AI 员工。这些行是真实数据,并未被过滤掉。请查看 multiple

  • 标记为 waitlist 的员工尚未投入运行。其每单位价格为公布价格,而非实测价格。

许可协议

  • 代码(src/Dockerfile):MIT。参见 LICENSE

  • 数据(data/):CC BY 4.0:可自由使用,引用时需注明出处。

引用

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

文件

  • data/cost-of-work-2026.3.json:完整数据集(任务、市场、来源、注意事项)

  • data/cost-of-work-2026.3.csv:表格导出

资源

MCP 服务器

该指数以 MCP 服务器形式发布,智能体可直接查询:

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

共五个工具:列出所有任务;获取某项任务在某个市场的每单位成本;根据业务量估算月度/年度成本;列出官方来源;将整个指数导出为 JSON。数据集已内置,因此服务器可离线应答,无需 API 密钥。服务器源码位于本仓库(src/Dockerfile),npm 包从 hirenika 仓库发布,数据快照在该仓库中生成,绝不手工编辑。

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