# BlinkDL/RWKV-LM | Model Context Protocol (MCP) Server > RWKV (pronounced RwaKuv) is an RNN with great LLM performance, which can also be directly trained like a GPT transformer (parallelizable). We are at RWKV-7 "Goose". So it's combining the best of RNN and transformer - great performance, linear time, constant space (no kv-cache), fast training, infinite ctx_len, and free sentence embedding. - **Stars**: ⭐ 14,516 - **Language**: Python - **Native MCP Manifest**: Standard NPX Transport ## 🔌 Claude Desktop Configuration (`claude_desktop_config.json`) ```json { "mcpServers": { "RWKV-LM": { "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-RWKV-LM" ] } } } ``` ## ⚡ Cursor MCP Configuration (`.cursor/mcp.json`) ```json { "mcpServers": { "RWKV-LM": { "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-RWKV-LM" ] } } } ``` ## 🚀 Launch Commands - **NPX**: `npx -y @modelcontextprotocol/server-RWKV-LM` - **Docker**: `docker run -i --rm mcp/RWKV-LM`