We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Wael-Rd/gns3-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__main__.py•212 B
"""
Main entry point for the GNS3 MCP Server.
This module is executed when running: python -m gns3_mcp.server
"""
from .server import mcp
if __name__ == "__main__":
# Start the FastMCP server
mcp.run()