Skip to main content
Glama
translated

Lara Translate MCP Server

by translated

list_memories

Retrieve all translation memories stored in your Lara Translate account to manage and reuse previous translations.

Instructions

Lists all translation memories in your Lara Translate account.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Implementation Reference

  • The main handler function for the "list_memories" tool, which lists all translation memories using the Lara Translator instance.
    export async function listMemories(lara: Translator) { return await lara.memories.list() }
  • Zod schema defining the input for the "list_memories" tool, which requires no parameters.
    export const listMemoriesSchema = z.object({})
  • src/mcp/tools.ts:47-50 (registration)
    Maps the tool name "list_memories" to its handler function in the listers object, used for dispatching in CallTool.
    const listers: Record<string, Lister> = { list_memories: listMemories, list_languages: listLanguages, };
  • Tool specification object for "list_memories" in the ListTools() response, advertised to MCP clients.
    { name: "list_memories", description: "Lists all translation memories in your Lara Translate account.", inputSchema: z.toJSONSchema(listMemoriesSchema), },

Latest Blog Posts

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/translated/lara-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server