{"library":"python-matter-server","title":"Python Matter Server","description":"Python-based server for interacting with Matter smart home devices, part of the Open Home Foundation ecosystem. Current version 8.1.2, requires Python >=3.12. Rapid development with frequent breaking changes.","language":"python","status":"active","last_verified":"Mon Apr 27","install":{"commands":["pip install python-matter-server"],"cli":{"name":"matter-server","version":"Traceback (most recent call last):"}},"imports":["from matter_server.server import MatterServer","from matter_server.client import MatterClient"],"auth":{"required":false,"env_vars":[]},"quickstart":{"code":"import asyncio\nfrom matter_server.client import MatterClient\n\nasync def main():\n    client = MatterClient(\"ws://localhost:5580/ws\", \"\")\n    await client.connect()\n    nodes = await client.get_nodes()\n    print(nodes)\n\nasyncio.run(main())","lang":"python","description":"Connects to a local Matter Server instance and fetches all nodes. Requires a running Matter Server (e.g., via pip install python-matter-server and running matter-server).","tag":null,"tag_description":null,"last_tested":null,"results":[]},"compatibility":null}