kwikset-mcp
kwikset-mcp
Kwikset Halo ファミリーのスマートロック(Halo、Halo Keypad、Halo Touch、Halo Select / Select Plus)を Clade が確認・操作できるようにする MCP サーバーです。
aiokwikset の薄いラッパーです。KWikset のクラウド API 向けにコミュニティでメンテナンスされた Python クライアントで、Home Assistant Kwikset integration でも使われているものです。
重要: Kwikset はこの API を公開も公式サポートもしていません。aiokwikset はそれをリバースエンジニアリングしているため、Kwikset がサーバー側の仕様を変更すると壊れる可能性があります。このサーバーには debug_api_surface ツールと防御的な参照処理が含まれており、そうした破損が静かに致命的な失敗になるのではなく、診断・修正しやすくなっています。
実際のアカウントやロックを使ったエンドツーエンドのテストは未実施です —Kwikset の認証情報や実機のスマートロックにアクセスできないまま、aiokwikset の公開ドキュメントと Home Assistant インテグレーションのソースから構築したものです。以下の手順を実行し、最初の lock/unlock 呼び出しをスモークテストとして扱ってください。api_mismatch エラーが発生した場合は、その内容(およびデバッグ用の debug_api_surface 出力)を Clude に貼り付けて、一致しないメソッド名を1〜2つ修正してもらってください。
ログインを別ステップにする理由
Kwikset のパスワードが LLM の会話を通過してはいけません。そこで、認証は通常のターミナルで auth_setup.py によって一度だけ実行し、結果のセッション・トークンのみをローカルに保存します(パスワードは今一切保存しません)。MCP サーバーはそのトーークンを読取って静かに更新するだけであり、Claude に、または Claude を介してあなたに、パスワードを尋ずることはありません。
Related MCP server: Seam MCP Server
セットアップ
依存関係をインストール(Python 3.10+):
cd kwikset-mcp python3 -m venv .venv仮想環境を有効にします。コマンドはシェルよって異ります:
# macOS / Linux (bash or zsh) source .venv/bin/activate# Windows PowerShell .venv\Scripts\Activate.ps1:: Windows Command Prompt (cmd.exe) .venv\Scripts\activate.bat成功すると、プロンプトの先頭に
(.venv)が付きます。PowerShell が「このシステムではスクリプトがの実行が無効になっています」というメッセージを表示して実行を拒否するし場合、先にSet-ExecutionPolicy -Scope Process -ExecutionPolicy Bypassを実行してから、アクティブ化のコマドを再実行してくだ在。次に、venv を有効にしたまま:
pip install -e .ログインを一度だけします。 認証情報は、次の3つの方法で指定でき、以下の順にチェックされます:
# 1. Command-line flags (any OS/shell) python auth_setup.py --email you@example.com --password 'hunter2' # 3. Interactive prompt (any OS/shell; default if nothing else is given) python auth_setup.pyオプション2(環境変数を先に設定する方法)は、上記の
--passwordフラグより推奨されます。コマンドラインのパスワードはps auxや Task Manager を介し他のプロセスから見える可能性があり、シェル履歴に残るためです。ただし、その構えはシェル別です:# macOS / Linux (bash or zsh) KWIKSET_EMAIL=you@example.com KWIKSET_PASSWORD='hunter2' python auth_setup.py# Windows PowerShell $env:KWIKSET_EMAIL = "you@example.com" $env:KWIKSET_PASSWORD = "hunter2" python auth_setup.pyアカウントで MFA が有効な場合は、コードを求められます(または
--mfa-code/$KWIKSET_MFA_CODEで先にできる渡すこともできます)。いずれの場合も、この処理によって~/.kwikset-mcp/tokens.jsonが作成されます(所有者のみ読み書き可能)。このステップの後はパスワードに触れることは一切なく、MCPサーバーは保存されたトークンを見て静かに更新するだけです。Claude にサーバーを設定します。
Claude Code の場合、このプロジェクトのディレクトリから:
# macOS / Linux claude mcp add kwikset -- "$(pwd)/.venv/bin/python" -m kwikset_mcp.server# Windows PowerShell claude mcp add kwikset -- "$PWD\.venv\Scripts\python.exe" -m kwikset_mcp.serverClaude Desktop の場合、これを
claude_desktop_config.json(Settings → Developer → Edit Config)に追加します。このディレクトリ内の.venvの絶対パスに置き換えてください:{ "mcpServers": { "kwikset": { "command": "/absolute/path/to/kwikset-mcp/.venv/bin/python", "args": ["-m", "kwikset_mcp.server"] } } }Windows では、
commandがC:\\absolute\\path\\to\\kwikset-mcp\\.venv\\Scripts\\python.exeを指すようにします(JSON なので二重バックスラッシュを使います)。その後、Claude クライアントを再起動して、新しいサーバを読み込ませてください。
試してみる。 Claude に「Kwikset のロックを一覧表示して」や「る前ドアは施錠されていますか?」などを頼むと、
list_locks/get_ock_statusが呼び出されるはずです。解錠操作は、unlock_doorがconfirm=true付きで呼ばれない限りactionしません。Claude がこのように動作するのは、あなたがそのドーを解錠すると明確に依頼した場合だけです。
公開されているツール
ツール | 説明 |
| アカウントのすべてのロック(ス状態、バッテリー残量、ホーム名) |
| 1つのロックの状態 / バッテリー / Wi-Fi |
| ドアを施認する |
| ドアを解け錠する( |
| インストールされている aiokation ライブラリの実際のメソッド名を診断用にダンプする |
再認認証
トークンが失効して静かな再新もできない場合(例やば、Kwikset のパスワードが変更された、MFA がリセットされたなど)、ツール呼び出しは手順付きの auth_required エラーを返します。その場合は、python auth_setup.py` を再実行してください。
ファイル
kwikset-mcp/
├── auth_setup.py # run once, by hand, to log in
├── src/kwikset_mcp/
│ ├── auth.py # local token file read/write
│ ├── client.py # aiokwikset wrapper (locks, status, etc.)
│ └── server.py # FastMCP server + tool definitions
├── pyproject.toml
└── requirements.txtThis server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Related MCP Servers
- -licenseNot gradedqualityDmaintenanceEnables control of TP-Link Kasa smart home devices through natural language commands. Supports device control, lighting scenes, room-based organization, and real-time status monitoring for smart plugs and bulbs.
- FlicenseNot gradedqualityCmaintenanceEnables control of smart locks through the Seam API, allowing users to lock/unlock doors, check status, and manage access codes across 100+ supported lock brands. Supports comprehensive access code management including temporary codes and multi-lock operations.
- FlicenseNot gradedqualityCmaintenanceEnables AI models to control and query smart home devices (air conditioners, lights, locks, cameras, refrigerators) through a backend API. Supports device control operations, status queries, and detailed device information retrieval with built-in documentation for proper device usage.2
- AlicenseNot gradedqualityBmaintenanceEnables Claude to control PetLibro RFID pet feeders and water fountains by checking food/battery/water status, dispensing food by the cup, and force-opening feeder lids via the PetLibro cloud API.GPL 3.0
Related MCP Connectors
Connect your Oura Ring account and enable access to your wellness data in apps and automations. In…
Tailscale device, route, DNS, key, user, and ACL management over MCP and CLI.
MCP connector that lets ChatGPT list, search, and run your Apple Shortcuts via a local Mac agent
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/jgonzalez007/kwikset-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server