# skyzh/tiny-llm | Model Context Protocol (MCP) Server > A course of learning LLM inference serving on Apple Silicon for systems engineers: build a tiny vLLM + Qwen. - **Stars**: ⭐ 4,168 - **Language**: Python - **Native MCP Manifest**: Standard NPX Transport ## 🔌 Claude Desktop Configuration (`claude_desktop_config.json`) ```json { "mcpServers": { "tiny-llm": { "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-tiny-llm" ] } } } ``` ## ⚡ Cursor MCP Configuration (`.cursor/mcp.json`) ```json { "mcpServers": { "tiny-llm": { "command": "npx", "args": [ "-y", "@modelcontextprotocol/server-tiny-llm" ] } } } ``` ## 🚀 Launch Commands - **NPX**: `npx -y @modelcontextprotocol/server-tiny-llm` - **Docker**: `docker run -i --rm mcp/tiny-llm`