A Model Context Protocol (MCP) server that provides access to Topolograph API for OSPF/IS-IS network analysis.
Topolograph MCP server exists for a simple reason — assistants are far more useful when they can act on Topolograph directly instead of describing what you should do. A Model Context Protocol (MCP) server that provides access to Topolograph API for OSPF/IS-IS network analysis.
This MCP server enables AI agents to interact with Topolograph API to analyze network topologies, monitor events, and perform path calculations for OSPF and IS-IS protocols. MCP (Model Context Protocol) is essential for connecting Large Language Models (LLMs) to network infrastructure, allowing AI agents to query and analyze network data in real-time.
Once Topolograph is connected, these are the calls the assistant has available:
get_all_graphs — List available graphs with filtering optionsget_graph_by_time — Fetch specific graph by timeget_network_by_graph_time — Query network informationget_graph_status — Check graph health and connectivityget_network_events — Retrieve network up/down eventsget_adjacency_events — Get node/host and link eventsget_events_timeline — Node/host events grouped into time waves for incident narrationget_nodes — Query diagram nodes (filter by role flags: ABR/ASBR, IS-IS overload/attached)get_edges — Query diagram edges (include=["lsp_left_bw", "lsps", "is_te_link", "edge_key"] for MPLS TE fields)get_shortest_path — Calculate the shortest path between two nodes (with_lsps=true to account for autoroute-enabled MPLS-TE tunnels)get_edge_failure_reaction — Predict whole-network impact if one or more links go downupload_graph — Upload new graphs to the APISetup follows the usual MCP pattern — install or clone the server, register it in your client's configuration file, restart the client.
You will need 2 environment variables: TOPOLOGRAPH_API_BASE, TOPOLOGRAPH_API_TOKEN. The server will not start without them, which is usually why the tools fail to appear on a first run. Keep credentials in your client's env block or a secrets manager rather than in a file you might commit.
Plenty of monitoring and observability servers cover similar ground. The differences that matter in practice are scope of access and how much setup stands between you and a working tool call. Topolograph's toolset — get_all_graphs, get_graph_by_time, get_network_by_graph_time and 10 more — is a fair guide to whether it matches your workflow. It is maintained by vadims06; worth a glance at recent repository activity before you build anything load-bearing on it.
We check each listing at SyncDev against the project's documentation before it goes live — if something here drifts out of date, it is a bug worth reporting.
| Tool | What it does |
|---|---|
| get_all_graphs | List available graphs with filtering options |
| get_graph_by_time | Fetch specific graph by time |
| get_network_by_graph_time | Query network information |
| get_graph_status | Check graph health and connectivity |
| get_network_events | Retrieve network up/down events |
| get_adjacency_events | Get node/host and link events |
| get_events_timeline | Node/host events grouped into time waves for incident narration |
| get_nodes | Query diagram nodes (filter by role flags: ABR/ASBR, IS-IS overload/attached) |
| get_edges | Query diagram edges (include=["lsp_left_bw", "lsps", "is_te_link", "edge_key"] for MPLS TE fields) |
| get_shortest_path | Calculate the shortest path between two nodes (with_lsps=true to account for autoroute-enabled MPLS-TE tunnels) |
| get_edge_failure_reaction | Predict whole-network impact if one or more links go down |
| upload_graph | Upload new graphs to the API |
| get_cspf_path | Constrained-shortest-path (CSPF) feasibility check between two nodes, without creating a tunnel |
| Variable | Description | Required |
|---|---|---|
| TOPOLOGRAPH_API_BASE | Configuration value read at startup. | Optional |
| TOPOLOGRAPH_API_TOKEN | Credential the server authenticates with. | Yes |
Give your coding agent the full DevTools toolbox: traces, network, console, heap snapshots and Lighthouse.
Dashboards, Prometheus and Loki queries, incidents and alerts — observability by conversation.
Errors with full context — stack traces, issue triage and AI-powered root-cause analysis from Sentry's server.
Enables enhanced web research capabilities for large language models through intelligent search queuing and advanced content extraction.
Automates browser interactions and enables Large Language Models (LLMs) to interact with web pages through Playwright and Chrome DevTools Protocol
Guides tool usage by providing recommendations for MCP tools at each problem-solving stage.