tplink-easy-smart-switch-mcp
TP-Link Easy Smart Switch MCP
TP-Link および Mercury Easy Smart スイッチ向けの TypeScript + Bun MCP サーバー。スイッチの Web UI を通じて動作し、SNMP には依存しません。
デフォルトターゲット: http://192.168.3.10
Codex プラグインとしてインストール
まず Bun をインストールし、次に独立した network-tools マーケットプレイスとこのプラグインを追加します:
codex plugin marketplace add qwe7002-ai/net-tool-plugins --ref main
codex plugin add tplink-easy-smart-switch-mcp@net-tool-pluginsインストール後、新しい Codex タスクを開始して、MCP ツールとスイッチ管理スキルが読み込まれるようにしてください。
Related MCP server: packet-coders-mcp
テスト済みモデル
現在の実装は、以下の Web UI スナップショットと読み取り専用ステータス呼び出しに対してテストされています:
TP-Link TL-SE2106(
192.168.3.10)、ファームウェア1.8.1 Build 20251128 Rel.57341Mercury SE106 Pro(
192.168.3.11)、ファームウェア1.0.0 Build 20240812 Rel.65021
他の TP-Link または Mercury Easy Smart スイッチでも、同じ Web UI ページと CGI エンドポイントを使用していれば動作する可能性がありますが、まだ検証されていません。
確認済みデバイスの特性
管理 UI は HTTP
80で利用可能ですログインフォームは
POST /logon.cgiに送信しますログインフィールドは
usernameと暗号化されたpasswordですログインページは
/cryp_new.jsを読み込みます既知の Web UI 変数には、
g_product、g_year、encryptTypeが含まれます一部のファームウェアでは、リクエストトークンが引用符で囲まれた文字列ではなく、
g_tid=1320064778;のようなベア数値代入として公開されます。他のページではtop.g_tidのみを参照する場合があるため、パーサーは代入と参照を区別する必要があります。
ツール
読み取り専用ツール:
get_switch_status: スイッチステータスの概要を返しますget_port_status: ポートステータスを返しますget_vlan_status: ポート VLAN、802.1Q VLAN、PVID、MTU VLAN のステータスを返しますget_trunk_status: ポートトランキング/LAG ステータスを返しますsearch_mac_address: 1 つの MAC アドレスをmac_address_search.cgiに照会し、スイッチにエントリがある場合に学習したポート/VLAN を返しますanalyze_topology: 2 台以上のカスケード接続されたスイッチを分析し、スイッチ間リンクポート、アップストリーム/ダウンストリームの関係、およびリンクを跨ぐ VLAN の関係を報告します
トポロジ分析は、各スイッチにログインし、MAC 検索 CGI にピアスイッチの管理 MAC を問い合わせることで動作します。スイッチがピア MAC をポート上で報告した場合、そのポートはスイッチ間リンクの証拠として使用されます。MAC 検索でリンクを確認できない場合、検出はアクティブな SFP/10G ポートペアを低信頼度の推測としてフォールバックし、VLAN の重複を優先し、ライブトラフィックをタイブレーカーとして使用します。これらの Easy Smart スイッチには LLDP がないため、このインバンド相関が利用可能なシグナルです。
設定 CGI ツール:
configure_mtu_vlan:VlanMtuRpm.htmからmtuVlanSet.cgiを生成または送信しますconfigure_port_vlan:VlanPortBasicRpm.htmからpvlanSet.cgiを生成または送信しますconfigure_8021q_vlan:Vlan8021QRpm.htmからqvlanSet.cgiを生成または送信しますconfigure_vlan_pvid:Vlan8021QPvidRpm.htmからvlanPvidSet.cgiを生成または送信しますconfigure_trunk_group:PortTrunkRpm.htmからport_trunk_set.cgi/port_trunk_display.cgiを生成または送信しますsave_configuration:SavingConfigRpm.htmからPOST savingconfig.cgiを生成または送信します
設定ツールはデフォルトで apply: false となり、ドライランリクエストのプレビューを返し、何も送信しません。実際の書き込みには、以下のすべてが必要です:
apply: trueconfirm: "APPLY"ログインの成功
Web UI のルール検証に合格
読み取り可能な
token/top.g_tid
インストール
bun install開発中の実行
bun run src/index.tsバイナリのビルド
Windows:
bun run build:win現在のプラットフォーム:
bun run buildビルド出力は dist/ に書き込まれます。
MCP クライアントが initialize 中に古いサーバーバージョンを報告する場合、その command はおそらく古い実行可能ファイルを指しています。それを dist/tplink-easy-smart-switch-mcp.exe に更新し、クライアントを再起動してください。
MCP のデバッグ
MCP ツールを一覧表示:
bun run debugスイッチステータスツールを呼び出し:
bun run debug -- --tool get_switch_status --host 192.168.3.10 --username admin --password your-password
bun run debug -- --tool get_switch_status --host 192.168.3.11ポートステータスツールを呼び出し:
bun run debug -- --tool get_port_status --host 192.168.3.10 --username admin --password your-password送信せずに設定リクエストをプレビュー:
bun run debug -- --tool configure_mtu_vlan --params '{ "enabled": true }'
bun run debug -- --tool configure_port_vlan --params '{ "mode": "set", "vid": 1, "ports": "1,2" }'
bun run debug -- --tool configure_8021q_vlan --params '{ "mode": "set", "vid": 20, "name": "main", "untaggedPorts": "3", "taggedPorts": "5,6" }'
bun run debug -- --tool configure_vlan_pvid --params '{ "pvid": 20, "ports": "3" }'
bun run debug -- --tool configure_trunk_group --params '{ "mode": "set", "group": 1, "ports": "1,2" }'
bun run debug -- --tool save_configuration --params '{}'ページサンプル
読み取り専用の開発スナップショットは以下の場所に保存されています:
examples/tplink-192.168.3.10:192.168.3.10の TP-Link Easy Smart スイッチexamples/mercury-192.168.3.11:192.168.3.11の Mercury SE106 Pro
これらには、VLAN、トランキング、設定のバックアップ/リストア、設定保存ページに加えて、pvlan.js、qvlan.js、menuList.js が含まれています。これらのサンプルには SessionID 値やパスワードは含まれていません。
生の JSON-RPC を送信することもできます:
bun run debug -- --raw '{ "jsonrpc": "2.0", "id": 99, "method": "tools/list", "params": {} }'MCP クライアントの例
{
"mcpServers": {
"tplink-easy-smart-switch": {
"command": "C:\\path\\to\\tplink-easy-smart-switch-mcp.exe",
"env": {
"TPLINK_HOST": "192.168.3.10",
"TPLINK_USERNAME": "admin",
"TPLINK_PASSWORD": "your-password"
}
}
}
}注記
ページコンテンツは DOM パーサーで解析され、タイトル、フォーム、フレーム、リンク、テーブル、テキストの要約に正規化されます。ステータスデータは主に MainRpm.htm、VlanPortBasicRpm.htm、Vlan8021QRpm.htm、Vlan8021QPvidRpm.htm、VlanMtuRpm.htm、PortTrunkRpm.htm などのページ内の JavaScript 変数から抽出されます。
テスト済みの TP-Link TL-SE2106 および Mercury SE106 Pro ファームウェアでは、MacSearchRpm.htm は完全なフォワーディングテーブルのダンプではなく検索フォームです。したがって、サポートされている MAC 機能は search_mac_address であり、ページロジックに従って mac_address_search.cgi を txt_macAddress_search、txt_vid_search、token とともに呼び出します。
トークン抽出は、引用符付き g_tid、ベア数値 g_tid、および非表示の token 入力をサポートします。キャプチャスクリプトは、開発サンプルを保存する前に、引用符付きとベアの両方の g_tid 代入をマスクします。
設定 CGI 呼び出しは、明示的な確認フローを使用します。開発とデバッグはデフォルトでドライランになります。save_configuration も書き込みアクションです。SavingConfigRpm.htm のページロジックに従い、POST savingconfig.cgi を使用しますが、明示的に確認されない限り送信しません。
This 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
- AlicenseBqualityFmaintenanceSecurity-focused MCP server for TP-Link Omada Open API workflows, enabling network management via natural language.8720MIT
- FlicenseAqualityBmaintenanceA local MCP server for interacting with a network lab, supporting read-only and configuration tools for devices like Arista EOS switches.6
- AlicenseAqualityCmaintenanceMCP server for monitoring and controlling WiFi routers (OpenWrt) via SSH, enabling device listing, status checks, WiFi configuration, rebooting, and more.712MIT
- AlicenseNot gradedqualityBmaintenanceRead-only MCP server for TP-Link Omada SDN controllers, enabling querying controller, site, device, and WiFi state.Apache 2.0
Related MCP Connectors
MCP server for managing Prisma Postgres.
MCP server for URL shortening and management
MCP server wrapping the Tesla Fleet API and TeslaMate API
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/qwe7002-ai/tplink-easy-smart-switch-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server