> ## Documentation Index
> Fetch the complete documentation index at: https://docs.hasmcp.com/llms.txt
> Use this file to discover all available pages before exploring further.

# What is the Streaming Debug Console used for in HasMCP?

> Native real-time traffic monitoring and network instrumentation.

# The Streaming Debug Console

When configuring dynamic Provider Tools or writing custom JavaScript interception logic, developers frequently need to understand exactly what the LLM is doing natively. Instead of blindly parsing raw HTTP execution logs or configuring a dedicated external ElasticSearch instance, HasMCP provides a real-time **Streaming Debug Console**.

<img src="https://mintcdn.com/hasmcp/5D51TdL86IoA89Pe/images/kb/server_debug_tab_1280.png?fit=max&auto=format&n=5D51TdL86IoA89Pe&q=85&s=ede27b8a2352999995614cf5784a5e62" alt="HasMCP Streaming Debug Console" width="2560" height="1440" data-path="images/kb/server_debug_tab_1280.png" />

### Observing Live Traffic

The Console operates as an interactive SSE (MCP Streamable HTTP) stream, piping live event logs straight into your browser. It instantly surfaces critical diagnostic milestones:

1. **Authentication Failures**: Was the user rejected because they lacked the proper Role-Based Access Control permission, or did their Oauth Access token expire?
2. **Provider Timeouts**: Did the target REST API take 12 seconds to respond, violating the proxy timeout rules?
3. **LLM Connection Errors**: Did the local Claude Desktop client unexpectedly drop the TCP session midway through an active execution block?
4. **JavaScript Runtime Errors**: Did your `onBeforeReturn` Goja interceptor crash because it attempted to parse a `null` JSON node natively?

Because the stream operates in raw logical real-time, developers can test complex prompt orchestrations on Claude Desktop on one monitor, and instantly view the corresponding HasMCP network choreography lighting up on their second monitor. This practically eliminates the traditional "black box" friction of enterprise agent engineering.
