参数
-
limitnumber 返回项目数量的可选上限
示例 prompt
“List my Verbumia projects.”
MCP
Verbumia ships a native MCP server so any MCP-aware client — Claude Desktop, Cursor, your own agent — can search keys, propose translations, review PRs, and inspect the missing-key queue. Two lines of config, your token, done.
在 dashboard 进入 Org Settings → API Keys → Create。授予 mcp:* scope(覆盖下面五个工具)。Secret 只显示一次;请复制完整字符串 vrb_live_<prefix>.<secret>。
存放到你 OS 的 keychain 或本地 .env — 永远不要 commit。Key 绑定到你的 org(可选地绑定到一个项目);超出 scope 的调用返回 404。可随时在 dashboard 撤销;被撤销的 key 在下一次调用时返回 401。
The MCP server is published to npm and Homebrew. With npx you don't need to install anything — Claude Desktop pulls the latest version on every launch. With brew you get a pinned local binary, useful behind strict firewalls.
npx(推荐) 1// 无需安装 — npx 按需拉取最新的 @verbumia/mcp2npx -y @verbumia/mcp --version Homebrew(可选) Tap 在 V1 发布 1// 可选:全局安装一次 — 随 V1 上线提供2brew install verbumia/tap/verbumia-mcp 打开 Claude Desktop 的配置文件,在 mcpServers 下添加 verbumia 条目,然后退出并重新启动应用。
claude_desktop_config.json 1// macOS: ~/Library/Application Support/Claude/claude_desktop_config.json2// Windows: %APPDATA%/Claude/claude_desktop_config.json3{4 "mcpServers": {5 "verbumia": {6 "command": "npx",7 "args": ["-y", "@verbumia/mcp"],8 "env": {9 "VERBUMIA_TOKEN": "vrb_live_<prefix>.<secret>",10 "VERBUMIA_PROJECT": "<project_uuid>"11 }12 }13 }14} 总共三个环境变量:VERBUMIA_TOKEN(必填)、VERBUMIA_PROJECT(可选 — 预先指定项目,这样 agent 就不必先调用 list_projects),以及 VERBUMIA_API_BASE(可选 — 默认 https://api.verbumia.ca;自托管或 staging 时覆盖)。
同一份 JSON,不同文件。在 Cursor 里,放在 .cursor/mcp.json(项目级)或 ~/.cursor/mcp.json(用户级)。其他客户端请参考各自的 MCP 配置文档 — mcpServers.verbumia 条目是相同的。
.cursor/mcp.json 1// .cursor/mcp.json (project-scoped) or ~/.cursor/mcp.json (user-scoped)2{3 "mcpServers": {4 "verbumia": {5 "command": "npx",6 "args": ["-y", "@verbumia/mcp"],7 "env": { "VERBUMIA_TOKEN": "vrb_live_<prefix>.<secret>" }8 }9 }10} 配置完成后,agent 就拥有这些工具。你不需要按名调用 — 在 chat 里描述意图,agent 自行选择。下面的名称是规范标识符,在阅读 agent trace 或在同一服务器上构建自定义 agent 时有用。
limit number 返回项目数量的可选上限 “List my Verbumia projects.”
project_uuid string required “Checkout 项目支持哪些语言和 namespace?”
project_uuid string required namespace string 限定到某个 namespace(例如 "checkout") language_code string 限定到某个语言(例如 "ja") cursor string 上一次调用返回的分页 cursor limit number 每页大小(默认 20) “checkout namespace 下 ja 缺少哪些翻译 key?”
project_uuid string required key string required namespace string required language_code string required value string required “Propose \"Confirmer la commande\" for checkout.review.confirm in fr-CA.”
project_uuid string required language_code string required payload object required JSON i18next 形式的翻译映射 “把这份翻译文件和项目的英文源对比校验一下。”
verbumia,可用 5 个工具。 list_projects 并返回你的 workspace。 卡住了?查看 Claude Desktop 的日志 ~/Library/Logs/Claude/mcp*.log(macOS)。90% 的问题来自 JSON 拼写错误或过期 token。