Args
-
limitnumber valfritt tak på antalet projekt som returneras
Exempelprompt
"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.
I din dashboard, gå till Org Settings → API Keys → Create. Ge den scope mcp:* (täcker alla fem verktyg nedan). Hemligheten visas en gång; kopiera hela vrb_live_<prefix>.<secret>-strängen.
Förvara den i OS:ets keychain eller en lokal .env — committa aldrig. Nyckeln är bunden till din org (och valfritt ett projekt); anrop utanför scope returnerar 404. Återkalla från dashboarden när som helst; återkallade nycklar 401:ar vid nästa anrop.
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 (rekommenderat) 1// ingen installation behövs — npx drar senaste @verbumia/mcp on demand2npx -y @verbumia/mcp --version Homebrew (alternativ) Tap publiceras vid V1 1// valfritt: installera en gång globalt — kommer med V1-lanseringen2brew install verbumia/tap/verbumia-mcp Öppna Claude Desktops config-fil, lägg till verbumia-posten under mcpServers, avsluta sedan och starta om appen.
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} Tre env-variabler totalt: VERBUMIA_TOKEN (krävs), VERBUMIA_PROJECT (valfri — pre-scope:a ett projekt så agenten inte behöver anropa list_projects först) och VERBUMIA_API_BASE (valfri — default https://api.verbumia.ca; överskrid för self-hosted eller staging).
Samma JSON, annan fil. I Cursor lägg den i .cursor/mcp.json (projekt-scope) eller ~/.cursor/mcp.json (user-scope). För andra klienter, följ klientens MCP-config-docs — mcpServers.verbumia-posten är identisk.
.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} När det är konfigurerat har agenten dessa verktyg tillgängliga. Du anropar dem inte med namn — beskriv din avsikt i chatten så väljer agenten. Namnen nedan är de kanoniska identifierarna, användbara när du läser agent-trace eller bygger egna agenter ovanpå samma server.
limit number valfritt tak på antalet projekt som returneras "List my Verbumia projects."
project_uuid string required "What languages and namespaces does the Checkout project ship?"
project_uuid string required namespace string begränsa till ett namespace (t.ex. "checkout") language_code string begränsa till ett språk (t.ex. "ja") cursor string pagineringscursor returnerad av tidigare anrop limit number sidstorlek (default 20) "What translation keys are missing for ja in the checkout namespace?"
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-formad översättningsmap "Validate this translation file against the project's English source."
verbumia med 5 verktyg tillgängliga. list_projects och returnera dina workspaces. Fast? Kolla Claude Desktops loggar i ~/Library/Logs/Claude/mcp*.log (macOS). 90 % av problemen är typos i JSON:en eller en gammal token.