{
"mcpServers": {
"matter-mcp-server": {
"command": "<see-readme>",
"args": []
}
}
}No install config available. Check the server's README for setup instructions.
Are you the author?
Add this badge to your README to show your security score and help users find safe servers.
MCP Server for the Matter Devices
Is it safe?
No package registry to scan.
No authentication — any process on your machine can connect.
MIT. View license →
Is it maintained?
Last commit 380 days ago. 7 stars.
Will it work with my client?
Transport: stdio. Works with Claude Desktop, Cursor, Claude Code, and most MCP clients.
No automated test available for this server. Check the GitHub README for setup instructions.
No known vulnerabilities.
This server is missing a description. Tools and install config are also missing.If you've used it, help the community.
Add informationHave you used this server?
Share your experience — it helps other developers decide.
Sign in to write a review.
Persistent memory using a knowledge graph
Privacy-first. MCP is the protocol for tool access. We're the virtualization layer for context.
Pre-build reality check. Scans GitHub, HN, npm, PyPI, Product Hunt — returns 0-100 signal.
Monitor browser logs directly from Cursor and other MCP compatible IDEs.
MCP Security Weekly
Get CVE alerts and security updates for Matter Mcp Server and similar servers.
Start a conversation
Ask a question, share a tip, or report an issue.
Sign in to join the discussion.
An MCP (Model-Context-Protocol) server that enables Claude and other AI assistants to directly interact with Matter devices and protocol operations. This server bridges the gap between AI language models and IoT device control by providing a structured interface for:
By using matter-mcp-server, AI assistants can understand and control Matter devices through natural language, making complex IoT operations more accessible and intuitive. The server implements the FastMCP protocol, allowing seamless integration with Claude and other AI platforms that support MCP.
Key benefits:
git clone https://github.com/your-username/matter-mcp-server.git
cd matter-mcp-server
python3 -m venv .venv
source venv/bin/activate # On Windows use: venv\Scripts\activate
pip install -r requirements.txt
Use curl to download the script and execute it with sh. See this documentation: https://docs.astral.sh/uv/installation/
curl -LsSf https://astral.sh/uv/install.sh | sh
If your system doesn't have curl, you can use wget:
wget -qO- https://astral.sh/uv/install.sh | sh
This file is located in different locations depending on your operating system. e.g Ubuntu: ~/.config/Claude MacOS: ~/Library/Application Support/Claude Windows: %APPDATA%\Claude
{
"mcpServers": {
"matter-mcp-server": {
"command": "uv",
"args": [
"--directory",
"[REPLACE_WITH_FULL_PATH_TO_YOUR_REPO]",
"run",
"matter-mcp-server.py"
]
}
}
}
Restart Claude Desktop and wait for mcp tools to load
Claude Code - MCP Server install
If you have Claude Code installed then execute the following commands in a terminal
claude mcp add
mater-mcp-server
uv --directory [REPLACE_WITH_FULL_PATH_TO_YOUR_REPO] run matter-mcp-server.py
The Python Matter Server is used by my MCP server. The Python Matter Server, from the Open Home Foundation, implements a Matter Controller Server over WebSockets using the official Matter (formerly CHIP) SDK.
For running the server and/or client in your development environment, see the Development documentation.
For running the Matter Server as a standalone docker container, see the docker instructions.
A Matter Virtual Device (MVD) is a software-based emulator provided by Google that simulates Matter-compatible smart home devices for testing and development. It allows developers to validate device behavior without physical hardware. To set it up, use the Matter Virtual Device Tool, follow the steps in the MVD official guide
The samples directory contains various example scripts demonstrating different Matter protocol operations:
python samples/Start_Listening.py