Kodi MCP Server
Enables control of Kodi media center through MCP protocol, supporting playback control, library management, navigation, and smart downloads search with automatic file playback.
README
Kodi MCP Server
A Model Context Protocol (MCP) server for controlling Kodi media center. This server provides both REST API and MCP protocol support, allowing seamless integration with MCP clients like Claude Desktop, n8n, and other MCP-compatible tools.
Features
Core Kodi Controls
- 🎮 Player Control: Play, pause, stop, volume control
- 🧭 Navigation: Menu navigation (up, down, left, right, select, back)
- 📊 Library Management: View library statistics, scan library
- 🎬 Movie Operations: Search movies, list recent movies, play by ID
- 📺 TV Show Operations: List TV shows, play episodes
Smart Downloads Management
- 📁 List Downloads: Browse video files in download directory
- 🔍 Search Downloads: Find files by name (case-insensitive)
- 🎯 Smart Find & Play: Intelligent search with automatic playback of best match
- 📂 Direct File Play: Play any video file by path
Protocol Support
- 🌐 REST API: Direct HTTP endpoints for easy integration
- 🔌 MCP Protocol: Full Model Context Protocol support
- 📡 Server-Sent Events: Real-time event streaming
- 🔗 WebSocket: Bidirectional communication support
Quick Start
Using Docker (Recommended)
-
Clone the repository
git clone https://github.com/your-username/kodi-mcp-server.git cd kodi-mcp-server -
Configure environment
cp .env.example .env # Edit .env with your Kodi configuration -
Start with Docker Compose
docker-compose up -d -
Verify installation
curl http://localhost:8080/health
Manual Installation
-
Requirements
- Python 3.11+
- Kodi with JSON-RPC enabled
- Network access to Kodi instance
-
Install dependencies
pip install -r requirements.txt -
Configure environment
export KODI_HOST=192.168.1.100 export KODI_PORT=8080 export KODI_USERNAME=kodi export KODI_PASSWORD=your_password export KODI_DOWNLOADS_PATH=/path/to/downloads -
Run the server
python -m src.server
Configuration
Environment Variables
| Variable | Description | Default | Required |
|---|---|---|---|
KODI_HOST |
Kodi server IP address | localhost |
Yes |
KODI_PORT |
Kodi JSON-RPC port | 8080 |
Yes |
KODI_USERNAME |
Kodi username | - | Yes |
KODI_PASSWORD |
Kodi password | - | Yes |
KODI_DOWNLOADS_PATH |
Path to downloads folder | - | Yes |
SERVER_HOST |
MCP server bind address | 0.0.0.0 |
No |
SERVER_PORT |
MCP server port | 8080 |
No |
MCP_SERVER_NAME |
MCP server identifier | kodi-controller |
No |
LOG_LEVEL |
Logging level | INFO |
No |
Kodi Setup
-
Enable JSON-RPC in Kodi
- Settings → Services → Control
- Enable "Allow remote control via HTTP"
- Set username and password
- Note the port (usually 8080)
-
Configure Downloads Path
- Use the actual path as seen by Kodi
- For Docker Kodi: usually
/storage/downloads/or/var/media/ - Test with
Files.GetDirectoryin Kodi JSON-RPC
Available Tools
Player Control
get_now_playing- Get currently playing media informationplayer_play_pause- Toggle play/pauseplayer_stop- Stop playbookset_volume- Set volume level (0-100)
Navigation
navigate_menu- Navigate Kodi interface (up/down/left/right/select/back)
Library Operations
search_movies- Search movies in Kodi librarylist_recent_movies- List recently added movieslist_tv_shows- List all TV showsplay_movie- Play movie by library IDplay_episode- Play TV show episodeget_library_stats- Get library statisticsscan_library- Trigger library scan
Downloads Management
list_downloads- List video files in downloads directorysearch_downloads- Search downloads by filenameplay_file- Play video file by pathfind_and_play- Smart search with automatic best-match playback
Usage Examples
With MCP Client (Claude Desktop, n8n)
{
"tool": "find_and_play",
"arguments": {
"query": "avengers",
"auto_play": true
}
}
REST API
# Search and play the best matching file
curl -X POST http://localhost:8080/tools/find_and_play \
-H "Content-Type: application/json" \
-d '{"params": {"query": "batman", "auto_play": true}}'
# List recent movies
curl -X POST http://localhost:8080/tools/list_recent_movies \
-H "Content-Type: application/json" \
-d '{"params": {"limit": 10}}'
# Control playback
curl -X POST http://localhost:8080/tools/player_play_pause \
-H "Content-Type: application/json" \
-d '{}'
MCP JSON-RPC Protocol
# Initialize connection
curl -X POST http://localhost:8080/ \
-H "Content-Type: application/json" \
-d '{"jsonrpc": "2.0", "method": "initialize", "id": 1}'
# List available tools
curl -X POST http://localhost:8080/ \
-H "Content-Type: application/json" \
-d '{"jsonrpc": "2.0", "method": "tools/list", "id": 2}'
# Execute tool
curl -X POST http://localhost:8080/ \
-H "Content-Type: application/json" \
-d '{
"jsonrpc": "2.0",
"method": "tools/call",
"params": {
"name": "find_and_play",
"arguments": {"query": "matrix", "auto_play": true}
},
"id": 3
}'
Integration
n8n MCP Client
- Add MCP Client node in n8n
- Configure connection:
- Transport: Server-Sent Events
- URL:
http://your-server:8080
- Use available tools in your workflows
Claude Desktop
Add to your Claude Desktop MCP configuration:
{
"mcpServers": {
"kodi-controller": {
"command": "docker",
"args": ["exec", "kodi-mcp-server", "python", "-m", "src.pure_mcp_server"],
"env": {}
}
}
}
Smart Search Algorithm
The find_and_play tool uses an intelligent scoring algorithm:
- 🎯 Position Matching: Terms at the beginning get higher scores
- 🔤 Word Matching: Complete word matches vs partial matches
- ⭐ Quality Bonus: Higher quality formats (1080p, BluRay) get bonus points
- ⚠️ Suspicious File Detection: Samples, trailers get penalty points
- 🧠 Fuzzy Matching: Works with partial terms like "batman" → "The Dark Knight"
API Reference
Health Check
GET /health
List Tools
GET /tools
Execute Tool (REST)
POST /tools/{tool_name}
Content-Type: application/json
{
"params": {
"param1": "value1",
"param2": "value2"
}
}
MCP Protocol Endpoints
POST / # JSON-RPC MCP protocol
GET / # Server-Sent Events stream
GET /sse # Additional SSE endpoint
Development
Running Tests
# Test new tools functionality
./demo_smart_search.sh
# Test all tools
./demo_new_tools_working.sh
# Quick Docker test
./quick_docker_test.sh
Project Structure
kodi-mcp-server/
├── src/
│ ├── __init__.py
│ ├── config.py # Configuration management
│ ├── kodi_client.py # Kodi JSON-RPC client
│ ├── server.py # Main server entry point
│ ├── hybrid_server.py # Hybrid REST+MCP server
│ └── pure_mcp_server.py # Pure MCP protocol server
├── docker-compose.yml # Docker deployment
├── Dockerfile # Container definition
├── requirements.txt # Python dependencies
├── .env.example # Environment template
└── README.md # This file
Contributing
- Fork the repository
- Create a feature branch
- Make your changes
- Add tests if applicable
- Submit a pull request
License
This project is licensed under the MIT License - see the LICENSE file for details.
Support
- 🐛 Issues: GitHub Issues
- 📖 Documentation: MCP Protocol Specification
- 💬 Discussions: GitHub Discussions
Acknowledgments
- Model Context Protocol - The protocol specification
- Kodi - The amazing media center software
- FastAPI - Web framework for the hybrid server
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。