MCP server for RURussian.com – turn your OpenClaw bot into a Russian tutor.
Install the server using pip:
pip install rurussian-mcpAdd this to your ~/.openclaw/config.json:
{
"mcpServers": {
"rurussian": {
"command": "rurussian-mcp",
"args": [],
"env": {
"RURUSSIAN_API_KEY": "YOUR_RURUSSIAN_API_KEY"
}
}
}
}In your bot flow, call authenticate first using that API key, then call the learning tools.
Initialize the session using your API key.
Example request: "Use my RuRussian API key and initialize this session."
Get declension and meaning of a word.
Example request: "Explain the declension and meaning of книга."
Show example sentences for a word.
Example request: "Show example sentences for идти in past tense."
Generate a short Russian text about a topic.
Example request: "Generate a short A2-level Russian text about travel."
Break down a sentence and explain each form.
Example request: "Break down this sentence and explain each form: Я люблю программировать."
Translate Russian text to English.
Example request: "Translate this Russian paragraph to English."
RURUSSIAN_API_URL only if you need a custom backend URL.Check out our API Documentation or read our Blogs for more tutorials and examples.