sec-graph
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Instructions
Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.
This server publishes no instructions, or was last inspected before Glama recorded them.
Capabilities
Features and capabilities supported by this server
Protocol revision2025-11-25
| Capability | Details |
|---|---|
| tools | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| query_graphB | Search the knowledge graph using BFS or DFS. Returns relevant nodes and edges as text context. |
| get_nodeB | Get full details for a specific node by label or ID. |
| get_neighborsA | Get all direct neighbors of a node with edge details. |
| get_communityC | Get all nodes in a community by community ID. |
| god_nodesB | Return the most connected nodes - the core abstractions of the knowledge graph. |
| graph_statsA | Return summary statistics: node count, edge count, communities, confidence breakdown. |
| shortest_pathC | Find the shortest path between two concepts in the knowledge graph. |
| list_prsA | List open GitHub PRs with CI status, review state, and graph impact (which communities each PR touches, blast radius). Use this before starting work to check if a PR already covers the area you're about to change. |
| get_pr_impactA | Get detailed graph impact for a specific PR: which files it changes, which knowledge-graph communities are affected, and how many nodes are touched. Use this to assess merge risk or check for overlap with your current work. |
| triage_prsA | Return all actionable open PRs (correct base, not stale) with full graph impact data so you can reason about review priority, merge order, and conflict risk. Call this when the user asks 'what PRs should I review?' or 'what's ready to merge?' |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
| Graph Report | Full GRAPH_REPORT.md |
| Graph Stats | Node/edge/community counts and confidence breakdown |
| God Nodes | Top 10 most-connected nodes |
| Surprising Connections | Cross-community surprising connections |
| Confidence Audit | EXTRACTED/INFERRED/AMBIGUOUS edge breakdown |
| Suggested Questions | Suggested questions for this codebase |
TDQS
Scored across 10 tools
Each tool has a distinct purpose: graph exploration tools (get_community, god_nodes, graph_stats, shortest_path, query_graph, get_node, get_neighbors) and PR impact tools (list_prs, get_pr_impact, triage_prs) are clearly separated with no overlap.
Most tools follow verb_noun pattern (get_community, graph_stats, list_prs, etc.), but 'god_nodes' breaks the pattern with an unclear verb. Otherwise consistent.
10 tools cover both graph querying and PR impact analysis without being excessive. Each tool earns its place for a knowledge graph with CI integration.
Graph operations are well-covered (nodes, communities, paths, stats, neighbors) and PR impact analysis is thorough. Minor gaps: no tool to update/close PRs, but triage_prs covers review priority.