mcp-server-tuya
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@mcp-server-tuyaTurn off the living room light"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
mcp-server-tuya
A Model Context Protocol (MCP) server that lets AI assistants (Claude, ChatGPT, Copilot, Cursor, and more) control your Tuya / Smart Life smart home devices.
Features
10 tools for complete device control (on/off, brightness, color, temperature, custom commands)
Device name resolution — use friendly names like "Living Room Light" instead of IDs
Intelligent caching — configurable TTL to reduce API calls
All Tuya regions — EU, US, CN, IN
Zero config files — credentials via environment variables
Works with Claude Desktop, ChatGPT, GitHub Copilot, Cursor, Windsurf, Cline, and any MCP-compatible client
Quick Start
1. Get Tuya Credentials
Go to Tuya IoT Platform and create an account
Create a Cloud Project (select your region and "Smart Home" industry)
Go to Devices > Link Tuya App Account and link your Smart Life / Tuya Smart app
Copy your Access ID and Access Secret from the project overview
2. Configure your MCP client
Add this to your config file:
Windows:
%APPDATA%\Claude\claude_desktop_config.jsonmacOS:
~/Library/Application Support/Claude/claude_desktop_config.json
{
"mcpServers": {
"tuya": {
"command": "uvx",
"args": ["mcp-server-tuya"],
"env": {
"TUYA_ACCESS_ID": "your_access_id",
"TUYA_ACCESS_KEY": "your_access_key",
"TUYA_API_ENDPOINT": "https://openapi.tuyaeu.com"
}
}
}
}claude mcp add tuya -- uvx mcp-server-tuyaThen set your environment variables:
export TUYA_ACCESS_ID="your_access_id"
export TUYA_ACCESS_KEY="your_access_key"
export TUYA_API_ENDPOINT="https://openapi.tuyaeu.com"Add this to .cursor/mcp.json in your project:
{
"mcpServers": {
"tuya": {
"command": "uvx",
"args": ["mcp-server-tuya"],
"env": {
"TUYA_ACCESS_ID": "your_access_id",
"TUYA_ACCESS_KEY": "your_access_key",
"TUYA_API_ENDPOINT": "https://openapi.tuyaeu.com"
}
}
}
}Add this to your .vscode/settings.json:
{
"mcp": {
"servers": {
"tuya": {
"command": "uvx",
"args": ["mcp-server-tuya"],
"env": {
"TUYA_ACCESS_ID": "your_access_id",
"TUYA_ACCESS_KEY": "your_access_key",
"TUYA_API_ENDPOINT": "https://openapi.tuyaeu.com"
}
}
}
}
}Any MCP-compatible client can use this server. The general pattern is:
Command:
uvxArgs:
["mcp-server-tuya"]Environment variables:
TUYA_ACCESS_ID,TUYA_ACCESS_KEY,TUYA_API_ENDPOINT
Refer to your client's documentation for how to configure MCP servers.
3. Restart your client
That's it! Ask your AI assistant things like:
"List all my devices"
"Turn off the living room light"
"Set the bedroom light to 50% brightness"
"What's the temperature in the kitchen?"
"Turn everything off"
Installation
With uvx (recommended)
No installation needed — uvx runs it directly:
uvx mcp-server-tuyaWith pip
pip install mcp-server-tuyaFrom GitHub
pip install git+https://github.com/juanmartinsantos/mcp-server-tuya.gitAvailable Tools
Tool | Description |
| List all devices with IDs, names, categories, and online status |
| Get current device state (power, brightness, temperature, etc.) |
| Get detailed device info (model, firmware, capabilities) |
| Turn on a device (supports multi-switch devices) |
| Turn off a device (supports multi-switch devices) |
| Toggle device on/off |
| Set light brightness (0-1000) |
| Set color temperature: warm (0) to cool (1000) |
| Set RGB color using HSV values |
| Send any custom command to a device |
All tools accept either a device ID or a device name (e.g., "Living Room Light").
Environment Variables
Variable | Required | Default | Description |
| Yes | — | Tuya Cloud API Access ID |
| Yes | — | Tuya Cloud API Access Secret |
| No |
| API endpoint (see regions below) |
| No |
| Device list cache duration (seconds) |
| No |
| API request timeout (seconds) |
API Endpoints by Region
Region | Endpoint |
Europe |
|
Americas |
|
China |
|
India |
|
Local Development
# Clone the repository
git clone https://github.com/juanmartinsantos/mcp-server-tuya.git
cd mcp-server-tuya
# Create virtual environment
python -m venv .venv
.venv\Scripts\activate # Windows
# source .venv/bin/activate # macOS/Linux
# Install in editable mode
pip install -e ".[dev]"
# Copy and configure environment
cp .env.example .env
# Edit .env with your credentials
# Run the server
mcp-server-tuya
# or: python -m mcp_server_tuyaTroubleshooting
"TUYA_ACCESS_ID environment variable is required"
Your credentials are not set. Make sure you've added the env section to your MCP client config.
"API error: permission deny"
Your Tuya Cloud project doesn't have the right permissions. Go to Tuya IoT Platform > your project > Service API and enable IoT Core and Smart Home APIs.
"Device not found"
The device name doesn't match. Use tuya_list_devices first to see the exact names of your devices.
Server won't start
Make sure you have uv installed. Install it with:
# Windows
winget install --id=astral-sh.uv
# macOS
brew install uvLicense
MIT License - see LICENSE for details.
Credits
FastMCP — Pythonic MCP server framework
tuya-connector-python — Official Tuya Cloud SDK
Model Context Protocol — by Anthropic
This server cannot be installed
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/juanmartinsantos/mcp-server-tuya'
If you have feedback or need assistance with the MCP directory API, please join our Discord server