mirror of
https://github.com/GNS3/gns3-server.git
synced 2026-09-14 14:05:20 +03:00
87 lines
3.4 KiB
Python
87 lines
3.4 KiB
Python
#
|
|
# Copyright (C) 2026 GNS3 Technologies Inc.
|
|
# Author: Yue Guobin
|
|
#
|
|
# This program is free software: you can redistribute it and/or modify
|
|
# it under the terms of the GNU General Public License as published by
|
|
# the Free Software Foundation, either version 3 of the License, or
|
|
# (at your option) any later version.
|
|
#
|
|
# This program is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
# GNU General Public License for more details.
|
|
#
|
|
# You should have received a copy of the GNU General Public License
|
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
"""
|
|
MCP tool handlers for GNS3 symbol management.
|
|
"""
|
|
|
|
from typing import Any
|
|
|
|
import logging
|
|
|
|
log = logging.getLogger(__name__)
|
|
|
|
|
|
# ── Helper ─────────────────────────────────────────────────────────────────
|
|
|
|
def _get_connector(gns3_ctx: dict[str, Any]):
|
|
from gns3server.agent.gns3_copilot.gns3_client.custom_gns3fy import Gns3Connector
|
|
return Gns3Connector(
|
|
url=gns3_ctx["server_url"],
|
|
jwt_token=gns3_ctx["jwt_token"],
|
|
api_version=3,
|
|
verify=False,
|
|
)
|
|
|
|
|
|
# ── Tool handlers ──────────────────────────────────────────────────────────
|
|
|
|
def get_symbols_handler(params: dict[str, Any], gns3_ctx: dict[str, Any]) -> dict[str, Any]:
|
|
conn = _get_connector(gns3_ctx)
|
|
symbols = conn.http_call("get", f"{conn.base_url}/symbols").json()
|
|
return {"symbols": symbols, "count": len(symbols)}
|
|
|
|
|
|
def get_symbol_handler(params: dict[str, Any], gns3_ctx: dict[str, Any]) -> dict[str, Any]:
|
|
symbol_id = params.get("symbol_id")
|
|
if not symbol_id:
|
|
return {"error": "symbol_id is required"}
|
|
conn = _get_connector(gns3_ctx)
|
|
return conn.http_call("get", f"{conn.base_url}/symbols/{symbol_id}").json()
|
|
|
|
|
|
def get_symbol_dimensions_handler(params: dict[str, Any], gns3_ctx: dict[str, Any]) -> dict[str, Any]:
|
|
symbol_id = params.get("symbol_id")
|
|
if not symbol_id:
|
|
return {"error": "symbol_id is required"}
|
|
conn = _get_connector(gns3_ctx)
|
|
return conn.http_call("get", f"{conn.base_url}/symbols/{symbol_id}/dimensions").json()
|
|
|
|
|
|
def get_default_symbols_handler(params: dict[str, Any], gns3_ctx: dict[str, Any]) -> dict[str, Any]:
|
|
conn = _get_connector(gns3_ctx)
|
|
symbols = conn.http_call("get", f"{conn.base_url}/symbols/default_symbols").json()
|
|
return {"default_symbols": symbols}
|
|
|
|
|
|
def upload_symbol_handler(params: dict[str, Any], gns3_ctx: dict[str, Any]) -> dict[str, Any]:
|
|
symbol_id = params.get("symbol_id")
|
|
if not symbol_id:
|
|
return {"error": "symbol_id is required"}
|
|
conn = _get_connector(gns3_ctx)
|
|
result = conn.http_call("post", f"{conn.base_url}/symbols/{symbol_id}").json()
|
|
return {"message": f"Symbol {symbol_id} uploaded", "symbol": result}
|
|
|
|
|
|
def delete_symbol_handler(params: dict[str, Any], gns3_ctx: dict[str, Any]) -> dict[str, Any]:
|
|
symbol_id = params.get("symbol_id")
|
|
if not symbol_id:
|
|
return {"error": "symbol_id is required"}
|
|
conn = _get_connector(gns3_ctx)
|
|
conn.http_call("delete", f"{conn.base_url}/symbols/{symbol_id}")
|
|
return {"message": f"Symbol {symbol_id} deleted", "symbol_id": symbol_id}
|