errorbar
@omnia-voice/mcp
将 errorbar 平台封装为 MCP 工具——所有公开的 API 操作(evals、judges/criteria、gates、logs、datasets、aliases、label sets、audit/proving、dedicated endpoints、training)都可以从 Claude Code、Claude Desktop、Cursor 或任何 MCP 客户端调用。
每个 API 操作对应一个工具,共 76 个工具,全部由平台的路由契约生成。输入按 REST API 接受的字段名和大小写进行校验;响应与原 API 返回完全一致(JSON 美化缩进,导出为文本),包括 API 自身的错误状态和错误消息。
安装
npx -y @omnia-voice/mcp # or: npm i -g @omnia-voice/mcp && omnia-mcp需要 OMNIA_API_KEY(工作区 API 密钥,形如 sk_…,在 设置 → API 密钥 中获取)。只给该密钥授予代理应拥有的作用域——监控代理给只读的 read,运行 evals 的代理给它 read + evals:write——平台会强制校验这些作用域,且每个工具的描述都会注明它需要哪个作用域。
Claude Code
claude mcp add errorbar -e OMNIA_API_KEY=sk_… -- npx -y @omnia-voice/mcpClaude Desktop / Cursor / 任意 mcpServers 配置
{
"mcpServers": {
"errorbar": {
"command": "npx",
"args": ["-y", "@omnia-voice/mcp"],
"env": { "OMNIA_API_KEY": "sk_…" }
}
}
}Related MCP server: aman-mcp
标志
标志 | 效果 |
| 只暴露 |
| 隐藏会启动计费工作的工具(eval 运行、训练、专用容量、judge 辅助) |
| 只暴露这几个工具 |
| API 根地址,默认为 |
需要消耗钱包余额的工具会在描述中标注 SPENDS MONEY,且不会被标记为 readOnlyHint;MCP 客户端若在非只读调用前请求确认,这些工具也会触发确认。
工具
工具 | 操作 | 作用域 |
|
| read |
|
| read |
|
| aliases:write |
|
| aliases:write |
|
| read |
|
| read |
|
| platform:write |
|
| read |
|
| read |
|
| platform:write · 计费 |
|
| read |
|
| platform:write |
|
| read |
|
| evals:write |
|
| evals:write · 计费 |
|
| read |
|
| read |
|
| evals:write |
|
| evals:write |
|
| evals:write · 计费 |
|
| read |
|
| evals:write · 计费 |
|
| read |
|
| evals:write · 计费 |
|
| evals:write |
|
| evals:write |
|
| read |
|
| platform:write · 计费 |
|
| read |
|
| read |
|
| platform:write · 计费 |
|
| platform:write |
|
| read |
|
| read |
|
| platform:write |
|
| platform:write |
|
| read |
|
| evals:write · 计费 |
|
| read |
|
| read |
|
| read |
|
| evals:write |
|
| evals:write |
|
| read |
|
| read |
|
| read |
|
| read |
|
| platform:write |
|
| read |
|
| platform:write · 计费 |
|
| read |
|
| platform:write |
|
| read |
|
| platform:write · 计费 |
|
| read |
|
| platform:write · 计费 |
|
| read |
|
| platform:write |
|
| read |
|
| read |
|
| evals:write |
|
| evals:write |
|
| evals:write |
|
| read |
|
| evals:write |
|
| read |
|
| read |
|
| read |
|
| read |
|
| platform:write |
|
| read |
|
| read |
|
| platform:write |
|
| read |
|
| read |
|
| read |
每个工具的描述都附带了完整契约:所有的 query 和 body 字段、响应包含什么内容,以及常见的坑(feature flags、400 条件、cursor 分页语义)。
以编程方式使用
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());开发
npm ci && npm run typecheck && npm test && npm run buildsrc/manifest.ts 由平台的 app/api/v1 路由生成;test/manifest.test.ts 固定了其必须覆盖的精确路由清单,因此只要出现新的平台路由而清单未重新生成,这套测试就会失败。
发布
推送一个 vX.Y.Z 标签——发布工作流会构建、测试,并携带 provenance 发布到 npm。
许可证:Apache-2.0
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- FlicenseCqualityDmaintenanceEnables interaction with the OpenData Platform API by dynamically exposing all endpoints as MCP tools with typed input schemas and HTTP handlers.99
- AlicenseNot gradedqualityBmaintenanceExposes identity, tools, workflows, guardrails, and evaluation as MCP tools — so any AI agent can read and write your ecosystem programmatically.32MIT

JustOneAPI MCP Serverofficial
AlicenseNot gradedqualityAmaintenanceExposes JustOneAPI endpoints as MCP tools, returning raw upstream JSON without field parsing for maximum data fidelity.1628MIT
Patronus MCP Serverofficial
AlicenseNot gradedqualityDmaintenanceEnables running LLM evaluations, experiments, and custom evaluators through a standardized MCP interface.16Apache 2.0
Related MCP Connectors
34 production API tools over one hosted MCP endpoint.
A paid remote MCP for AI SDK data query MCP, built to return verdicts, receipts, usage logs, and aud
A paid remote MCP for AI SDK benchmark dashboard, built to return verdicts, receipts, usage logs, an
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/omnia-v/omnia-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server