Manage translation projects, phrases and locales with secure organization-scoped tools and views.
Abgeleitet aus den Transporten, die dieser Eintrag deklariert (streamable-http). Ein Client, der hier nicht steht, ist damit nicht ausgeschlossen — Forge kann ihn nur nicht bestätigen.
Die Verifizierung bestätigt die Identität des Publishers (die Inhaberschaft am Repo), nicht die Sicherheit des Codes. Der Sicherheits-Scan deckt bekannte CVEs und verdächtige Installationsskripte ab.
Aus einem echten MCP-Handshake initialize → tools/list gegen den deklarierten Endpunkt gelesen. Es wurde nie ein Tool aufgerufen — tools/list ist der lesende Introspektionsaufruf, den das Protokoll dafür vorsieht. Es spiegelt wider, was der Server in diesem Moment angeboten hat; ein gehosteter Endpunkt ist an keine Version gebunden und kann sich ohne Ankündigung ändern.
https://mcp.multilocale.com/mcp17 Tools · 438 mslist_projectsList all MultiLocale projects the authenticated user has access to. Returns a bounded Markdown and structured preview of project ids, names, locales, and timestamps.List all MultiLocale projects the authenticated user has access to. Returns a bounded Markdown and structured preview of project ids, names, locales, and timestamps.
Für dieses Tool wurde kein Eingabeschema veröffentlicht.
get_projectFetch a single MultiLocale project by id or name. Returns bounded Markdown and structured project metadata, including name, configured locales, and timestamps.Fetch a single MultiLocale project by id or name. Returns bounded Markdown and structured project metadata, including name, configured locales, and timestamps.
| Parameter | Typ | Beschreibung |
|---|---|---|
| projectIdOrName* | string | Project id or project name (slug) |
add_projectCreate a MultiLocale project with a default locale and optional additional locales. Refuses to create a duplicate project name in the authenticated organization.Create a MultiLocale project with a default locale and optional additional locales. Refuses to create a duplicate project name in the authenticated organization.
| Parameter | Typ | Beschreibung |
|---|---|---|
| name* | string | New project name (prefer a URL-safe slug) |
| defaultLocale* | string | Default locale code for the project (for example, en) |
| locales | array | Initial locale codes. The default locale is added automatically when omitted. |
update_projectUpdate a MultiLocale project’s default locale, complete locale list, or translation context. Project names are intentionally not changed because phrases reference the project name.Update a MultiLocale project’s default locale, complete locale list, or translation context. Project names are intentionally not changed because phrases reference the project name.
| Parameter | Typ | Beschreibung |
|---|---|---|
| projectIdOrName* | string | Project id or project name (slug) |
| defaultLocale | string | New default locale code. It must be one of the project locales. |
| locales | array | Complete replacement list of locale codes. Include the default locale. |
| context | string | Optional translation context for the project. Use an empty string to clear it. |
list_phrasesList translation phrases for a MultiLocale project. Optionally filter by language or key. Returns a bounded Markdown and structured preview of id, key, language, and value.List translation phrases for a MultiLocale project. Optionally filter by language or key. Returns a bounded Markdown and structured preview of id, key, language, and value.
| Parameter | Typ | Beschreibung |
|---|---|---|
| project* | string | Project name (slug) to list phrases for |
| language | string | Filter by language code (e.g. en, it, es) |
| key | string | Filter by exact phrase key |
get_phraseFetch translations for one exact phrase key in a MultiLocale project. Returns a bounded Markdown and structured preview across locales, or a single locale when language is provided.Fetch translations for one exact phrase key in a MultiLocale project. Returns a bounded Markdown and structured preview across locales, or a single locale when language is provided.
| Parameter | Typ | Beschreibung |
|---|---|---|
| project* | string | Project name (slug) the phrase belongs to |
| key* | string | Exact phrase key to look up |
| language | string | Language code to fetch (e.g. en, it). Omit to fetch all languages for the key. |
search_phrasesSearch translation phrases for a MultiLocale project by matching a query string against phrase keys and values. Returns a bounded Markdown and structured preview of matching ids, keys, languages, and values.Search translation phrases for a MultiLocale project by matching a query string against phrase keys and values. Returns a bounded Markdown and structured preview of matching ids, keys, languages, and values.
| Parameter | Typ | Beschreibung |
|---|---|---|
| project* | string | Project name (slug) to search phrases in |
| query* | string | Search text to match against phrase keys and values |
| language | string | Restrict search to a specific language code (e.g. en, it) |
find_duplicate_phrase_valuesFind keys in a bounded scan of one MultiLocale project whose default-locale translations have the same value. The result explicitly reports when the scan or output preview is truncated.Find keys in a bounded scan of one MultiLocale project whose default-locale translations have the same value. The result explicitly reports when the scan or output preview is truncated.
| Parameter | Typ | Beschreibung |
|---|---|---|
| project* | string | Project id or name whose default-locale copy should be checked |
| scanLimit | integer | Maximum default-locale phrases to scan. Defaults to 1000, capped at 2000. |
find_missing_translationsReport missing keys in a bounded scan of one locale or up to 10 configured locales, compared with the project default locale. The result explicitly reports partial locale or phrase scans and never creates translations.Report missing keys in a bounded scan of one locale or up to 10 configured locales, compared with the project default locale. The result explicitly reports partial locale or phrase scans and never creates translations.
| Parameter | Typ | Beschreibung |
|---|---|---|
| project* | string | Project id or name whose translation coverage should be checked |
| language | string | Locale code to check. Omit to report coverage for every configured locale. |
| localeLimit | integer | Maximum configured locales to check when language is omitted. Defaults to 10. |
| scanLimit | integer | Maximum phrases to scan per locale. Defaults to 1000, capped at 2000. |
export_locale_dictionaryExport one locale of a MultiLocale project as bounded, sorted key/value entries. Results are API-paginated with a maximum of 50 entries per call and each value is capped at 500 characters.Export one locale of a MultiLocale project as bounded, sorted key/value entries. Results are API-paginated with a maximum of 50 entries per call and each value is capped at 500 characters.
| Parameter | Typ | Beschreibung |
|---|---|---|
| project* | string | Project name (slug) to export |
| language* | string | Language code to export (for example, en) |
| skip | integer | Number of keys to skip, sorted alphabetically. Defaults to 0 and is capped at 10000. |
| limit | integer | Maximum number of keys to return. Defaults to 25, capped at 50. |
list_team_membersList a bounded roster for the authenticated MultiLocale organization. Returns only each member's display name and role. Email addresses, member IDs, role IDs, phone, country, and signup device details are excluded.List a bounded roster for the authenticated MultiLocale organization. Returns only each member's display name and role. Email addresses, member IDs, role IDs, phone, country, and signup device details are excluded.
Für dieses Tool wurde kein Eingabeschema veröffentlicht.
add_phraseCreate a new key in a project’s default locale and generate translations for every other configured locale. Omit value to use the key as its source value. Refuses to overwrite an existing key.Create a new key in a project’s default locale and generate translations for every other configured locale. Omit value to use the key as its source value. Refuses to overwrite an existing key.
| Parameter | Typ | Beschreibung |
|---|---|---|
| project* | string | Project name (slug) to add the key to |
| key* | string | New exact phrase key |
| value | string | Source value in the default locale. Omit to use the key itself. |
| model | string | Translation model to use. Defaults to gpt-5.6-luna. |
| context | string | Optional context that helps translators disambiguate the phrase. |
update_phraseUpdate the translation value for a specific phrase key and language in a MultiLocale project. Phrases may be shared across projects — updating affects all projects that share the key. Clears machine-translation flags since the value is now human-edited.Update the translation value for a specific phrase key and language in a MultiLocale project. Phrases may be shared across projects — updating affects all projects that share the key. Clears machine-translation flags since the value is now human-edited.
| Parameter | Typ | Beschreibung |
|---|---|---|
| project* | string | Project name (slug) the phrase belongs to |
| key* | string | Exact phrase key to update |
| language* | string | Language code of the translation to update (e.g. en, it, es) |
| value* | string | New translation value for the given language |
add_localeAdd a new locale to a project and generate translations for every key currently missing in that locale. Uses the default-locale value as the source for each translation.Add a new locale to a project and generate translations for every key currently missing in that locale. Uses the default-locale value as the source for each translation.
| Parameter | Typ | Beschreibung |
|---|---|---|
| project* | string | Project name (slug) to localize |
| locale* | string | New locale code to add (for example, it) |
| model | string | Translation model to use. Defaults to gpt-5.6-luna. |
| context | string | Optional context applied while translating the missing phrases. |
share_phraseAttach every locale translation for one key in a source project to one or more target projects. The underlying phrase rows become shared, so future edits affect every attached project.Attach every locale translation for one key in a source project to one or more target projects. The underlying phrase rows become shared, so future edits affect every attached project.
| Parameter | Typ | Beschreibung |
|---|---|---|
| project* | string | Source project id or name that already contains the key |
| key* | string | Exact key to share across every locale |
| targetProjects* | array | One or more target project ids or names to attach to the key |
delete_phraseprivilegiertPermanently delete every locale translation for one key in a project. If a phrase is shared with other projects, this deletes the shared row for those projects too, rather than only detaching the project.Permanently delete every locale translation for one key in a project. If a phrase is shared with other projects, this deletes the shared row for those projects too, rather than only detaching the project.
| Parameter | Typ | Beschreibung |
|---|---|---|
| project* | string | Project id or name that contains the key to delete |
| key* | string | Exact key whose complete locale group should be deleted |
show_project_overviewRender a bounded overview for a known MultiLocale project. Use this after listing projects or when the user provides a project id or name. It shows safe project metadata and up to 24 configured locales without downloading the project phrase dictionary.Render a bounded overview for a known MultiLocale project. Use this after listing projects or when the user provides a project id or name. It shows safe project metadata and up to 24 configured locales without downloading the project phrase dictionary.
| Parameter | Typ | Beschreibung |
|---|---|---|
| projectIdOrName* | string | MultiLocale project id or name (slug) to render |
17 von 17 Tools haben eine Beschreibung veröffentlicht.
Tool-Namen und -Beschreibungen stammen vom Publisher und werden wortgetreu als inerter Text angezeigt. Es sind die Zeichenketten, die ein MCP-Client an ein Modell übergibt, deshalb prüft Forge sie auf Prompt-Injection-Muster — jeder Befund erscheint oben beim Sicherheits-Scan. „Privilegiert“ ist ein Schlagwort-Treffer im Tool-Namen, keine Prüfung dessen, was das Tool tut: ein harmlos klingender Name kann trotzdem alles tun.
Manage translation projects, phrases and locales with secure organization-scoped tools and views.
Verlinkte Namen öffnen den Forge-Index aller Einträge, bei denen dieses Tool beobachtet wurde. Alle indexierten Tools durchsuchen.
Dieser Eintrag veröffentlicht kein npm-Paket, daher hat Forge keinen Abhängigkeitsbaum dafür. Das ist eine Lücke in der Abdeckung — keine Aussage, dass er keine Abhängigkeiten hat.