verse-diagnostics-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| UEFN_LOG_PATH | No | Path to UnrealEditorFortnite.log | Auto-detected (WSL/Windows) |
| VERSE_PROJECT_ROOT | No | Fortnite Projects directory (for relative paths in output) | Auto-detected |
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
} |
| prompts | {
"listChanged": false
} |
| resources | {
"subscribe": false,
"listChanged": false
} |
| experimental | {} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| get_verse_diagnosticsA | Get the latest Verse compile diagnostics from UEFN logs. Parses the UnrealEditorFortnite.log file for VerseBuild errors and warnings, deduplicates them, and returns structured JSON with file paths, line/column locations, error codes, and messages. Returns: str: JSON object with fields: - ok (bool): True if no errors found - source (str): Always "uefn-log" - error_count (int): Number of errors - warning_count (int): Number of warnings - diagnostics (list): Array of diagnostic objects with: - file, line, column, endLine, endColumn, severity, code, message, timestamp, raw - log_path (str): Path to the log file read - log_exists (bool): Whether the log file was found |
| get_latest_build_sessionB | Get all VerseBuild log lines from the most recent build session. Returns the raw VerseBuild output lines (both errors and info) from the latest compile session, useful for understanding the full build context. Returns: str: JSON with fields: - lines (list[str]): Raw VerseBuild log lines - count (int): Number of lines found - log_exists (bool): Whether the log file was found |
| check_verse_log_freshnessA | Check when the UEFN log was last modified. Useful for determining if a build has completed since the last check. Returns: str: JSON with log_path, exists, modified_at, age_seconds |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 3 tools
Each tool has a unique purpose: checking log freshness, retrieving raw build output, and getting structured diagnostics. There is no overlap or ambiguity.
All tool names follow a consistent verb_noun pattern with snake_case: check_verse_log_freshness, get_latest_build_session, get_verse_diagnostics.
3 tools is appropriate for a focused diagnostics server, though slightly minimal. Each tool serves a clear need without redundancy.
The tool set covers the full workflow: checking log freshness, retrieving raw build lines, and parsing structured diagnostics. No obvious gaps for the stated purpose.