This is the official MCP (Model Context Protocol) server for LG ThinQ devices. This server provides integrated control capabilities including status monitoring, device control, and profile information for various LG ThinQ devices, built on the LG ThinQ API and Python Open SDK. MCP connection method is stdio. - Prerequisites - Quick Start - Detailed Usage - Tool Reference - Device List Query Retrie
Add this skill
npx mdskills install thinq-connect/thinqconnect-mcpOfficial LG ThinQ MCP server with clear setup, useful IoT control tools, and comprehensive documentation
1234# ThinQ Connect MCP Server (Beta)5This is the official MCP (Model Context Protocol) server for LG ThinQ devices.6This server provides integrated control capabilities including status monitoring, device control, and profile information for various LG ThinQ devices, built on the LG ThinQ API and Python Open SDK. MCP connection method is stdio.78910## Table of Contents111213- [Features](#features)14- [Prerequisites](#prerequisites)15- [Quick Start](#quick-start)16- [Detailed Usage](#detailed-usage)17- [Tool Reference](#tool-reference)181920## Features2122- **Device List Query**23 Retrieve a list of all registered LG ThinQ devices.2425- **Device Status Monitoring**26 Get real-time status information for specific devices.2728- **Device Control**29 Execute control commands defined in each device's profile.30 (e.g., turn air conditioner on/off, set temperature, etc.)3132- **Device Control Capabilities Query**33 Provide detailed information about controllable properties, methods information for each device.3435---3637## Prerequisites381. Prepare a [Personal Access Token](https://github.com/thinq-connect/pythinqconnect/blob/main/README.md#obtaining-and-using-a-personal-access-token) for ThinQ Open API calls392. Verify your ThinQ account's country code. You can find it in the [Country Codes](https://github.com/thinq-connect/pythinqconnect/blob/main/README.md#country-codes) section.403. Python 3.11 or higher414. Install [uv](https://docs.astral.sh/uv/) - A fast Python package installer and resolver for Python projects425. MCP client (Claude Desktop, etc.)434445---464748## Quick Start4950### Claude Desktop51Open up the configuration file, and add ThinQ Connect MCP config.52* macOS: ~/Library/Application Support/Claude/claude_desktop_config.json53* Windows: %APPDATA%\Claude\claude_desktop_config.json54```json55{56 "mcpServers": {57 "thinqconnect-mcp": {58 "command": "uvx",59 "args": [60 "thinqconnect-mcp"61 ],62 "env": {63 "THINQ_PAT": "your_personal_access_token_here",64 "THINQ_COUNTRY": "your_country_code_here"65 }66 }67 }68}69```7071---7273## Detailed Usage7475After setting up the configuration file as shown in the Quick Start section, you can use the ThinQ Connect MCP Server directly in your conversations with Claude.7677Examples of prompts you can use:7879 * "Please provide a list of all devices"80 * "Please check the status of the robot vacuum device"81 * "Please set the temperature of the air conditioner device to 24 degrees"828384---8586## Tool Reference8788### Available Tools89901. **get_device_list**91 - Description: Retrieves a list of all devices connected to the ThinQ Connect platform92 - Parameters: None93 - Returns: String containing connected device list information94952. **get_device_available_controls**96 - Description: Retrieves available control commands and parameter information for a specific device97 - Parameters: device_type (string), device_id (string)98 - Returns: String containing device control commands and parameter information991003. **get_device_status**101 - Description: Retrieves status information for a specific device102 - Parameters: device_id (string)103 - Returns: String containing device status information1041054. **post_device_control**106 - Description: Send control commands to a specific device on the ThinQ Connect platform to change its settings or state107 - Parameters: device_type (string), device_id (string), control_method (string), control_params (dict)108 - Returns: String containing device control result message109
Full transparency — inspect the skill content before installing.