errorbar

errorbar

Enables MCP clients to call the platform's full API as individual tools—covering evals, criteria, gates, logs, datasets, aliases, label sets, audit/proving, dedicated endpoints, and training—with validated inputs and raw API responses.

Category
访问服务器

README

@omnia-voice/mcp

The errorbar platform as MCP tools — every public API operation (evals, judges/criteria, gates, logs, datasets, aliases, label sets, audit/proving, dedicated endpoints, training) callable from Claude Code, Claude Desktop, Cursor, or any MCP client.

One tool per API operation, 76 tools, generated from the platform's route contracts. Inputs are validated with the same field names and casing the REST API accepts; responses come back exactly as the API returned them (JSON pretty-printed, exports as text), including the API's own error status and message.

Install

npx -y @omnia-voice/mcp        # or: npm i -g @omnia-voice/mcp && omnia-mcp

Needs OMNIA_API_KEY (a workspace API key, sk_…, from Settings → API keys). Give the key only the scopes the agent should have — read for a monitoring agent, read + evals:write for one that runs evals — the platform enforces them and each tool's description says which scope it needs.

Claude Code

claude mcp add errorbar -e OMNIA_API_KEY=sk_… -- npx -y @omnia-voice/mcp

Claude Desktop / Cursor / any mcpServers config

{
  "mcpServers": {
    "errorbar": {
      "command": "npx",
      "args": ["-y", "@omnia-voice/mcp"],
      "env": { "OMNIA_API_KEY": "sk_…" }
    }
  }
}

Flags

Flag Effect
--read-only (or OMNIA_MCP_READ_ONLY=1) expose only GET tools
--no-spend (or OMNIA_MCP_NO_SPEND=1) hide tools that start billable work (eval runs, training, dedicated capacity, judge assists)
--only list_evals,get_eval expose just these tools
--base-url URL (or OMNIA_BASE_URL) API root, default https://platform.omnia-voice.com/api

Tools that spend wallet credit say SPENDS MONEY in their description and are not readOnlyHint; MCP clients that confirm before non-read-only calls will ask for those.

Tools

Tool Operation Scope
list_alerts GET /v1/alerts read
list_aliases GET /v1/aliases read
upsert_alias PUT /v1/aliases aliases:write
delete_alias DELETE /v1/aliases/{id} aliases:write
export_audit_log GET /v1/audit/export read
list_audit_tombstones GET /v1/audit/tombstones read
create_audit_tombstone POST /v1/audit/tombstones platform:write
get_audit_verification GET /v1/audit/verify read
list_batches GET /v1/batches read
create_batch POST /v1/batches platform:write · spends
get_batch GET /v1/batches/{id} read
cancel_batch POST /v1/batches/{id}/cancel platform:write
list_criteria GET /v1/criteria read
create_criterion POST /v1/criteria evals:write
suggest_criteria POST /v1/criteria/suggest evals:write · spends
list_criterion_templates GET /v1/criteria/templates read
get_criterion GET /v1/criteria/{id} read
update_criterion PATCH /v1/criteria/{id} evals:write
delete_criterion DELETE /v1/criteria/{id} evals:write
run_criterion_alignment POST /v1/criteria/{id}/align evals:write · spends
get_criterion_alignment GET /v1/criteria/{id}/alignment read
auto_improve_criterion POST /v1/criteria/{id}/auto_improve evals:write · spends
get_criterion_certificate GET /v1/criteria/{id}/certificate read
scan_criterion_suspects POST /v1/criteria/{id}/scan evals:write · spends
decontaminate_texts POST /v1/datasets/decontaminate evals:write
create_dataset_from_logs POST /v1/datasets/from_logs evals:write
list_dedicated_endpoints GET /v1/dedicated read
create_dedicated_endpoint POST /v1/dedicated platform:write · spends
list_dedicated_templates GET /v1/dedicated/templates read
get_dedicated_endpoint GET /v1/dedicated/{id} read
update_dedicated_endpoint PATCH /v1/dedicated/{id} platform:write · spends
delete_dedicated_endpoint DELETE /v1/dedicated/{id} platform:write
list_refusals GET /v1/enforcement/refusals read
list_env_tools GET /v1/env/tools read
register_env_tool POST /v1/env/tools platform:write
delete_env_tool DELETE /v1/env/tools/{id} platform:write
list_evals GET /v1/evals read
create_eval POST /v1/evals evals:write · spends
compare_evals GET /v1/evals/compare read
get_failure_clusters GET /v1/evals/failure_clusters read
get_eval GET /v1/evals/{id} read
delete_eval DELETE /v1/evals/{id} evals:write
cancel_eval POST /v1/evals/{id}/cancel evals:write
get_eval_evidence GET /v1/evals/{id}/evidence read
get_eval_gate GET /v1/evals/{id}/gate read
get_eval_samples GET /v1/evals/{id}/samples read
list_training_files GET /v1/fine_tuning/files read
upload_training_file POST /v1/fine_tuning/files platform:write
list_fine_tuning_jobs GET /v1/fine_tuning/jobs read
create_fine_tuning_job POST /v1/fine_tuning/jobs platform:write · spends
get_fine_tuning_job GET /v1/fine_tuning/jobs/{id} read
cancel_fine_tuning_job DELETE /v1/fine_tuning/jobs/{id} platform:write
get_fine_tuning_bakeoff GET /v1/fine_tuning/jobs/{id}/bakeoff read
start_fine_tuning_bakeoff POST /v1/fine_tuning/jobs/{id}/bakeoff platform:write · spends
list_grpo_runs GET /v1/grpo/runs read
start_grpo_run POST /v1/grpo/runs platform:write · spends
get_grpo_run GET /v1/grpo/runs/{id} read
stop_grpo_run POST /v1/grpo/runs/{id}/stop platform:write
get_grpo_run_weights GET /v1/grpo/runs/{id}/weights read
list_label_sets GET /v1/label_sets read
create_label_set POST /v1/label_sets evals:write
attach_label_set POST /v1/label_sets/{id}/attach evals:write
freeze_label_set POST /v1/label_sets/{id}/freeze evals:write
list_labels GET /v1/labels read
create_label POST /v1/labels evals:write
list_logs GET /v1/logs read
export_logs GET /v1/logs/export read
list_model_versions GET /v1/model_versions read
get_model_version GET /v1/model_versions/{id} read
adopt_model_version POST /v1/model_versions/{id}/adopt platform:write
list_raft_rounds GET /v1/raft/rounds read
get_judge_settings GET /v1/settings/judge read
set_judge_settings PUT /v1/settings/judge platform:write
get_setup_status GET /v1/setup/status read
get_trace GET /v1/traces/{traceId} read
verify_document POST /v1/verify read

Each tool's description carries the full contract: every query and body field, what the response contains, and the gotchas (feature flags, 400 conditions, cursor semantics).

Programmatic use

import { createServer, OmniaClient } from "@omnia-voice/mcp";
import { StdioServerTransport } from "@modelcontextprotocol/sdk/server/stdio.js";

const server = createServer({ client: new OmniaClient({ apiKey: process.env.OMNIA_API_KEY! }), readOnly: true });
await server.connect(new StdioServerTransport());

Development

npm ci && npm run typecheck && npm test && npm run build

src/manifest.ts is generated from the platform's app/api/v1 routes; test/manifest.test.ts pins the exact route inventory it must cover, so a new platform route fails this suite until the manifest is regenerated.

Release

Push a tag vX.Y.Z — the publish workflow builds, tests, and publishes to npm with provenance.

License: Apache-2.0

推荐服务器

Baidu Map

Baidu Map

百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。

官方
精选
JavaScript
Playwright MCP Server

Playwright MCP Server

一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。

官方
精选
TypeScript
Magic Component Platform (MCP)

Magic Component Platform (MCP)

一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。

官方
精选
本地
TypeScript
Audiense Insights MCP Server

Audiense Insights MCP Server

通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。

官方
精选
本地
TypeScript
VeyraX

VeyraX

一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。

官方
精选
本地
graphlit-mcp-server

graphlit-mcp-server

模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。

官方
精选
TypeScript
Kagi MCP Server

Kagi MCP Server

一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。

官方
精选
Python
e2b-mcp-server

e2b-mcp-server

使用 MCP 通过 e2b 运行代码。

官方
精选
Neon MCP Server

Neon MCP Server

用于与 Neon 管理 API 和数据库交互的 MCP 服务器

官方
精选
Exa MCP Server

Exa MCP Server

模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。

官方
精选