MCP vocabulary server for agents
The MCP Server lets agents manage Memory Translator vocabulary through JSON-RPC tools on production.
This MCP vocabulary server is for agents that should save learning material into a real Memory Translator account. Instead of scraping the UI, tools call a JSON-RPC endpoint to add, list, or delete flashcards tied to the signed-in user.
Use the MCP Server when an assistant helps someone study: it can capture a new word pair in the moment, show recent vocabulary, or remove a card that should not stay in the deck. The same flashcards then appear in Learn on the website and Android app.
The examples below show the public tool shapes. Pair this page with the REST API overview for broader translate and history endpoints, and contact us if you need production access for a serious integration.
Endpoint
POST https://www.memory-translator.com/mcp/rpc/
Tools
vocabulary_add— text_from, text_to, text_from_lang, text_to_langvocabulary_list— optional limitvocabulary_delete— id
Example: list tools
{
{"jsonrpc":"2.0","id":1,"method":"tools/list","params":{}}
Example: add a word
{
{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{
"name":"vocabulary_add",
"arguments":{
"text_from":"hello",
"text_to":"hallo",
"text_from_lang":"en",
"text_to_lang":"de"
}
}}