Qt4 Documentation MCP Server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@Qt4 Documentation MCP ServerSearch Qt 4.8.4 docs for QObject"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
Qt 4.8.4 Documentation MCP Server
Bring Qt 4.8.4 documentation to your AI coding assistant. Works offline with local docs.
Tool Reference | Changelog | Contributing | Troubleshooting
Related MCP server: MTA:SA Documentation MCP Server
✨ Features
🔌 Offline-First - Works entirely with local documentation
🔍 Full-Text Search - Find what you need across all Qt docs
⚡ Smart Caching - Fast responses for repeated queries
🎯 Fragment Support - Extract specific sections when needed
🛠️ MCP Standard - Compatible with Claude, VS Code, and other MCP clients
📦 Prerequisites
Python 3.11+ required
Qt 4.8.4 HTML Documentation
Download automatically via included script, or
Manual download from qt.io archives
~500MB disk space for docs + cache + search index
SQLite with FTS5 support (included in Python 3.11+ by default)
🚀 Installation
From PyPI (Recommended)
pip install qt4-doc-mcp-serverFrom Source
git clone https://github.com/jztan/qt4-doc-mcp-server.git
cd qt4-doc-mcp-server
pip install -e .[dev]Setup Qt Documentation
# Automated setup (recommended)
python scripts/prepare_qt48_docs.py --segments 4
# This will:
# - Download Qt 4.8.4 source archive
# - Extract HTML documentation
# - Create .env with sensible defaults
# - Copy GFDL license fileQuick Start Commands
# 1. Install
pip install qt4-doc-mcp-server
# 2. Setup Qt docs
python scripts/prepare_qt48_docs.py --segments 4
# 3. Build search index
qt4-doc-build-index
# 4. Start server
qt4-doc-mcp-server
# 5. Verify health
curl -s http://127.0.0.1:8000/health⚙️ Configuration
Create a .env file in the repo root. The helper script writes sensible defaults; adjust as needed:
Variable | Default | Purpose |
| required | Absolute path to the Qt 4.8.4 HTML docs ( |
|
| Location of the SQLite FTS5 search index. |
|
| Directory for cached Markdown blobs + metadata. |
|
| Build search index automatically at startup if not present. |
|
| Warm the Markdown cache automatically at startup. |
|
| Bind address for the FastMCP server ( |
|
| TCP port for streamable HTTP transport. |
|
| Logging verbosity (DEBUG/INFO/WARNING/ERROR). |
|
| In-memory CachedDoc LRU capacity (counts pages). |
|
| Default maximum characters returned per request (prevents token limit issues). |
🔌 MCP Client Setup
The server exposes an HTTP endpoint at http://127.0.0.1:8000/mcp. Register it with your preferred MCP-compatible agent using the instructions below.
VS Code has built-in MCP support via GitHub Copilot (requires VS Code 1.102+).
Using CLI (Quickest):
code --add-mcp '{"name":"qt4-docs","type":"http","url":"http://127.0.0.1:8000/mcp"}'Using Command Palette:
Open Command Palette (
Cmd/Ctrl+Shift+P)Run
MCP: Open User Configuration(for global) orMCP: Open Workspace Folder Configuration(for project-specific)Add the configuration:
{ "servers": { "qt4-docs": { "type": "http", "url": "http://127.0.0.1:8000/mcp" } } }Save the file. VS Code will automatically load the MCP server.
Manual Configuration:
Create .vscode/mcp.json in your workspace (or mcp.json in your user profile directory):
{
"servers": {
"qt4-docs": {
"type": "http",
"url": "http://127.0.0.1:8000/mcp"
}
}
}Add to Claude Code using the CLI command:
claude mcp add --transport http qt4-docs http://127.0.0.1:8000/mcpOr configure manually in your Claude Code settings file (~/.claude.json):
{
"mcpServers": {
"qt4-docs": {
"type": "http",
"url": "http://127.0.0.1:8000/mcp"
}
}
}Add to Codex CLI using the command:
codex mcp add qt4-docs -- npx -y mcp-client-http http://127.0.0.1:8000/mcpOr configure manually in ~/.codex/config.toml:
[mcp_servers.qt4-docs]
command = "npx"
args = ["-y", "mcp-client-http", "http://127.0.0.1:8000/mcp"]Note: Codex CLI primarily supports stdio-based MCP servers. The above uses mcp-client-http as a bridge for HTTP transport.
Kiro primarily supports stdio-based MCP servers. For HTTP servers, use an HTTP-to-stdio bridge:
Create or edit
.kiro/settings/mcp.jsonin your workspace:{ "mcpServers": { "qt4-docs": { "command": "npx", "args": [ "-y", "mcp-client-http", "http://127.0.0.1:8000/mcp" ], "disabled": false } } }Save the file and restart Kiro. The Qt 4.8.4 documentation tools will appear in the MCP panel.
Note: Direct HTTP transport support in Kiro is limited. The above configuration uses mcp-client-http as a bridge to connect to HTTP MCP servers.
Most MCP clients use a standard configuration format. For HTTP servers:
{
"mcpServers": {
"qt4-docs": {
"type": "http",
"url": "http://127.0.0.1:8000/mcp"
}
}
}For clients that require a command-based approach with HTTP bridge:
{
"mcpServers": {
"qt4-docs": {
"command": "npx",
"args": ["-y", "mcp-client-http", "http://127.0.0.1:8000/mcp"]
}
}
}🛠️ Available Tools
The server provides 2 MCP tools for working with Qt 4.8.4 documentation:
read_documentation- Read and convert specific Qt documentation pages to MarkdownFragment extraction (
#details,#public-functions)Pagination with
start_indexandmax_lengthSection-only mode for targeted content
Returns Markdown with normalized links and GFDL attribution
search_documentation- Full-text search across all Qt 4.8.4 documentationSQLite FTS5 with BM25 relevance ranking
Context snippets with highlighted matches
Configurable result limits (default: 10, max: 50)
For detailed API documentation including parameters, return values, examples, and error handling, see the Tool Reference.
📚 Related Resources
📄 License
Code: MIT License (see
LICENSE).Qt Documentation: © The Qt Company Ltd./Digia, licensed under GFDL 1.3. This server converts locally obtained docs and includes attribution in outputs. If you redistribute a local mirror, include
LICENSE.FDLand preserve notices.See
THIRD_PARTY_NOTICES.mdfor more details.
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Latest Blog Posts
MCP directory API
We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/jztan/qt4-doc-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server