> For the complete documentation index, see [llms.txt](https://docs.qpoint.io/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.qpoint.io/guides/devtools-guides.md).

# Devtools Guides

QTap DevTools is a browser-based interface for real-time HTTP/S traffic inspection. It provides Chrome DevTools-like visibility into your server's network activity, showing you exactly what your applications are sending and receiving - including inside HTTPS.

DevTools is designed for **single-host emergency troubleshooting**. When you need to debug a specific server right now, enable DevTools and watch traffic flow in real-time. No service restarts required.

## Available Guides

| Guide                                                                                                  | Description                                                                    |
| ------------------------------------------------------------------------------------------------------ | ------------------------------------------------------------------------------ |
| [Getting Started with DevTools](/guides/devtools-guides/getting-started-with-devtools.md)              | Install Qtap, enable DevTools, and see your first traffic in 5 minutes         |
| [DevTools Interface Guide](/guides/devtools-guides/devtools-interface-guide.md)                        | Detailed walkthrough of the DevTools UI - tabs, filters, and features          |
| [DevTools API](/guides/devtools-guides/devtools-api.md)                                                | Programmatic access to the real-time event stream for scripting and tooling    |
| [AI-Assisted Troubleshooting with Ollama](/guides/devtools-guides/ai-troubleshooting-with-devtools.md) | Local LLM setup with Qwen3 + Ollama for traffic analysis                       |
| [DevTools MCP Server](/guides/devtools-guides/devtools-mcp-server.md)                                  | Connect Codex CLI, ChatGPT, or Claude Code to DevTools via MCP                 |
| [Traffic Analysis MCP Server](/guides/devtools-guides/traffic-analysis-mcp-server.md)                  | Type inference, test generation, and schema validation from captured traffic   |
| [Server-Side Event Filtering](/guides/devtools-guides/server-side-event-filtering.md)                  | Subscribe to specific event types with rulekit expressions                     |
| [Enhanced MCP with Server-Side Filtering](/guides/devtools-guides/enhanced-mcp-troubleshooting.md)     | Optimized MCP server using server-side filters for targeted AI troubleshooting |

## Key Features

* **See inside HTTPS** without proxies or certificates
* **Process attribution** - know which binary/container made each request
* **Real-time streaming** - watch traffic as it happens
* **No restarts required** - enable with a flag while apps are running
* **Local operation** - all data stays on your server

## Quick Start

```bash
# Install Qtap
curl -s https://get.qpoint.io/install | sudo sh

# Run with DevTools enabled
sudo qtap --enable-dev-tools

# Access in your browser
open http://localhost:10001/devtools
```


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.qpoint.io/guides/devtools-guides.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
