htb-app-mcp
Enables interaction with Hack The Box App services including machines, challenges, sherlocks, and more through the HTB API v4.
README
HTB App MCP
Local MCP server for Hack The Box App services via the HTB API v4 at:
https://labs.hackthebox.com/api/v4
This project does not use pyhackthebox: the client talks directly to HTB via httpx and authenticates with:
Authorization: Bearer <HTB_APP_TOKEN>
Do not confuse this with the official HTB CTF MCP at mcp.hackthebox.ai/v1/ctf/mcp/. This server is for HTB App/Labs content: Machines, Challenges, Sherlocks, Fortresses, Starting Point, Seasonal, and Pro Labs.
Current status
- Recommended transport: local Streamable HTTP MCP on
http://127.0.0.1:8000/mcp. - HTTP is stateless by default: restart the server without your MCP client getting stuck on
Session not found. - Recommended auth: MCP header
Authorization: Bearer <HTB_APP_TOKEN>, no.envneeded. - Fallback: stdio +
.env/ environment variables. - Exposed tools: 56.
Setup
Prerequisites:
- Python 3.11+
uv- HTB App Token from
app.hackthebox.com
Install dependencies:
uv sync
Recommended mode: HTTP with Authorization header
Start the server:
uv run htb-app-mcp --transport http --host 127.0.0.1 --port 8000
Configure your MCP client:
{
"mcpServers": {
"htb-app-mcp": {
"url": "http://127.0.0.1:8000/mcp",
"type": "http",
"headers": {
"Authorization": "Bearer <HTB_APP_TOKEN>"
}
}
}
}
In this mode the token comes from the MCP client and is forwarded to HTB only. No .env required.
Restarting the server
HTTP is stateless by default, avoiding the Session not found issue. You can restart:
uv run htb-app-mcp --transport http --host 127.0.0.1 --port 8000
and the MCP client can reconnect without starting a new chat. If the client still uses an old connection, reload the MCP servers on the client side.
For protocol debugging you can force stateful mode:
uv run htb-app-mcp --transport http --stateful-http
Alternative mode: stdio
Stdio is useful when an MCP host wants to launch the local process directly.
Config:
{
"mcpServers": {
"htb-app-mcp": {
"command": "uv",
"args": ["--directory", "D:\\Sources\\htb-app-mcp", "run", "htb-app-mcp"],
"env": {
"HTB_API_TOKEN": "<HTB_APP_TOKEN>"
}
}
}
}
You can also use .env as a local fallback:
cp .env.example .env
# edit .env and set HTB_API_TOKEN (or API_TOKEN)
uv run htb-app-mcp
.env is gitignored.
Tools
| Area | Tools |
|---|---|
| Account | htb_whoami, htb_user_profile |
| VPN | htb_connection_status, htb_vpn_servers, htb_switch_vpn_server, htb_download_ovpn |
| Search | htb_search, htb_api_get, htb_api_post |
| Machines | htb_list_machines, htb_machine_info, htb_active_machine, htb_recommended_machines, htb_machine_tasks |
| Machine actions | htb_spawn_machine, htb_stop_machine, htb_extend_machine, htb_reset_machine, htb_submit_machine_flag |
| Challenges | htb_list_challenges, htb_challenge_info, htb_challenge_categories, htb_download_challenge |
| Challenge actions | htb_start_challenge, htb_stop_challenge, htb_start_container, htb_stop_container, htb_submit_challenge_flag |
| Sherlocks | htb_list_sherlocks, htb_sherlock_info, htb_sherlock_tasks, htb_sherlock_progress, htb_sherlock_play, htb_download_sherlock, htb_submit_sherlock_task_flag |
| Fortresses | htb_list_fortresses, htb_fortress_info, htb_fortress_flags, htb_submit_fortress_flag, htb_reset_fortress |
| Seasonal | htb_list_seasons, htb_active_season_machine, htb_season_machines, htb_season_rewards, htb_season_user_rank, htb_season_user_ranks, htb_season_leaderboard, htb_season_top_leaderboard |
| Starting Point | htb_starting_point_progress, htb_starting_point_tier, htb_submit_machine_task |
| Pro Labs | htb_list_prolabs, htb_prolab_overview, htb_prolab_machines, htb_prolab_flags, htb_submit_prolab_flag |
Resource:
htb://service-map
Prompt:
htb_target_workflow
HTB endpoints covered
The server uses verified real endpoints on labs.hackthebox.com/api/v4, including:
GET /user/info
GET /connection/status
GET /user/connection/status
GET /connections/servers?product=...
POST /connections/servers/switch/{vpnId}
GET /access/ovpnfile/{vpnId}/0
GET /access/ovpnfile/{vpnId}/0/1
GET /search/fetch
GET /machine/paginated
GET /machine/profile/{machineSlug}
GET /machine/active
GET /machine/recommended
GET /machines/{machineId}/tasks
POST /vm/spawn
POST /vm/terminate
POST /vm/extend
POST /vm/reset
POST /vm/reset/vote
POST /vm/reset/vote/accept
POST /machine/own
GET /challenges
GET /challenge/info/{challengeSlug}
GET /challenge/categories/list
GET /challenges/{challengeId}/download_link
POST /challenge/start
POST /challenge/stop
POST /container/start
POST /container/stop
POST /challenge/own
GET /sherlocks
GET /sherlocks/{sherlockId}/info
GET /sherlocks/{sherlockId}/tasks
GET /sherlocks/{sherlockId}/progress
GET /sherlocks/{sherlockId}/play
GET /sherlocks/{sherlockId}/download_link
POST /sherlocks/{sherlockId}/tasks/{taskId}/flag
GET /fortresses
GET /fortress/{fortressId}
GET /fortress/{fortressId}/flags
POST /fortress/{fortressId}/flag
POST /fortress/{fortressId}/reset
GET /season/list
GET /season/machine/active
GET /season/machines/{seasonId}
GET /season/rewards/{seasonId}
GET /season/user/rank/{seasonId}
GET /season/user/{userId}/ranks
GET /season/{players|teams}/leaderboard
GET /season/{players|teams}/leaderboard/top/{seasonId}
GET /sp/tiers/progress
GET /sp/tier/{tierId}
GET /prolabs
GET /prolab/{prolabId}/overview
GET /prolab/{prolabId}/machines
GET /prolab/{prolabId}/flags
POST /prolab/{prolabId}/flag
Some older endpoints documented online now return 404 (e.g. /machine/list, /machines, /starting-point/machines).
Downloads
Supported downloads:
- OVPN:
htb_download_ovpn - Challenge ZIP:
htb_download_challenge - Sherlock ZIP:
htb_download_sherlock
Defaults:
- directory:
downloads - ZIP password:
hackthebox - ZIP extraction: enabled for challenges and Sherlocks
- ZIP downloads serialized with a minimum interval to reduce
429 Too Many Requests
Change the directory:
export HTB_DOWNLOAD_DIR="D:/Sources/htb-app-mcp/downloads"
Environment variables
| Variable | Default | Usage |
|---|---|---:|---|
| HTB_API_TOKEN | empty | HTB token for stdio or HTTP fallback |
| API_TOKEN | empty | Supported alias for compatibility |
| HTB_TOKEN | empty | Supported alias |
| HTB_API_BASE_URL | https://labs.hackthebox.com/api/v4 | Override base API URL |
| HTB_DOWNLOAD_DIR | downloads | Download directory |
| HTB_TIMEOUT | 30 | HTTP timeout to HTB in seconds |
| HTB_LOAD_DOTENV | 1 | Set to 0 to disable .env loading |
| HTB_MCP_TRANSPORT | stdio | stdio, http, streamable-http |
| HTB_MCP_HOST | 127.0.0.1 | HTTP bind address |
| HTB_MCP_PORT | 8000 | HTTP port |
| HTB_MCP_PATH | /mcp | MCP HTTP path |
| HTB_MCP_STATELESS_HTTP | 1 in HTTP mode | HTTP stateless by default |
| HTB_MCP_JSON_RESPONSE | 0 | Return JSON responses where supported |
| HTB_MCP_LOG_LEVEL | INFO | Server log level |
| HTB_MCP_VERBOSE_HTTP | 0 | Set to 1 to re-enable verbose HTTPX logging |
| HTB_DOWNLOAD_MIN_INTERVAL | 1.0 | Minimum seconds between ZIP downloads |
| HTB_MCP_GRACEFUL_SHUTDOWN_TIMEOUT | 5 | Graceful shutdown timeout in seconds |
| HTB_MCP_WINDOWS_SELECTOR_EVENT_LOOP | 1 | Use selector event loop on Windows |
CLI
uv run htb-app-mcp --help
Main options:
--transport {stdio,http,streamable-http}
--host 127.0.0.1
--port 8000
--path /mcp
--stateless-http
--stateful-http
--json-response
--log-level INFO
--graceful-shutdown-timeout 5
Local validation
Smoke test with direct client:
uv run python tests/smoke_client.py
Smoke test with MCP stdio:
uv run python tests/smoke_mcp.py
Smoke test with MCP HTTP and Authorization header:
uv run python tests/smoke_http.py
Troubleshooting
Session not found
Update the code and restart in default HTTP stateless mode:
uv run htb-app-mcp --transport http --host 127.0.0.1 --port 8000
If the client still holds an old connection, use reload MCP servers on the client side.
404 Not Found on /mcp
Check that:
- the server is started with
--transport http - the MCP config points to
http://127.0.0.1:8000/mcp HTB_MCP_PATHor--pathis not set to something other than/mcp
ConnectionResetError [WinError 10054] on Windows
The HTTP transport forces the selector event loop on Windows to avoid noisy stack traces when an MCP client closes a completed HTTP/SSE connection.
Traceback or ASGI callable returned without completing response on Ctrl+C
Shutdown handling is cross-platform: on Linux/macOS it uses standard Uvicorn signal handling; on Windows it enables the selector event loop only to avoid Proactor-specific noise. In all cases the server filters benign noise from Uvicorn/Starlette when closing HTTP MCP streams with Ctrl+C. For full debug logs, set HTB_MCP_VERBOSE_HTTP=1.
422 Unprocessable Entity
HTB rejects invalid parameters. The server normalizes common cases:
Easy->easyVery Easy->very-easyunsolved->incompletedsolved->completesort_by=difficulty->user_difficultyfor challengestarget_type=challenge->challengesfor search
If HTB changes the schema, use htb_api_get to test a read-only endpoint.
403 Forbidden during download
This is not necessarily a bug: HTB may deny access to challenges or files not available for your account plan, tier, status, or permissions.
429 Too Many Requests
You hit the HTB rate limit. The server serializes ZIP downloads, but if an agent requests many consecutive downloads, wait a few minutes or increase:
export HTB_DOWNLOAD_MIN_INTERVAL=2.0
Logs with signed URLs
HTTPX and httpcore logs are silenced by default to avoid printing temporary S3 URLs. For debugging:
export HTB_MCP_VERBOSE_HTTP=1
Do not share verbose logs: they may contain temporary presigned URLs.
Security
- Keep the HTTP server on loopback (
127.0.0.1). - Do not commit
.envor tokens. - Do not paste tokens in logs or the README.
- Avoid
HTB_MCP_VERBOSE_HTTP=1outside local debugging. - Tools like
spawn,stop,reset,submit flag,switch VPNhave side effects on your HTB account.
API notes
HTB App v4 APIs are not officially stable for external integrations. Most public references are community-maintained or reverse-engineered; HTB may change paths, payloads, or permissions without notice.
推荐服务器
Baidu Map
百度地图核心API现已全面兼容MCP协议,是国内首家兼容MCP协议的地图服务商。
Playwright MCP Server
一个模型上下文协议服务器,它使大型语言模型能够通过结构化的可访问性快照与网页进行交互,而无需视觉模型或屏幕截图。
Magic Component Platform (MCP)
一个由人工智能驱动的工具,可以从自然语言描述生成现代化的用户界面组件,并与流行的集成开发环境(IDE)集成,从而简化用户界面开发流程。
Audiense Insights MCP Server
通过模型上下文协议启用与 Audiense Insights 账户的交互,从而促进营销洞察和受众数据的提取和分析,包括人口统计信息、行为和影响者互动。
VeyraX
一个单一的 MCP 工具,连接你所有喜爱的工具:Gmail、日历以及其他 40 多个工具。
graphlit-mcp-server
模型上下文协议 (MCP) 服务器实现了 MCP 客户端与 Graphlit 服务之间的集成。 除了网络爬取之外,还可以将任何内容(从 Slack 到 Gmail 再到播客订阅源)导入到 Graphlit 项目中,然后从 MCP 客户端检索相关内容。
Kagi MCP Server
一个 MCP 服务器,集成了 Kagi 搜索功能和 Claude AI,使 Claude 能够在回答需要最新信息的问题时执行实时网络搜索。
e2b-mcp-server
使用 MCP 通过 e2b 运行代码。
Neon MCP Server
用于与 Neon 管理 API 和数据库交互的 MCP 服务器
Exa MCP Server
模型上下文协议(MCP)服务器允许像 Claude 这样的 AI 助手使用 Exa AI 搜索 API 进行网络搜索。这种设置允许 AI 模型以安全和受控的方式获取实时的网络信息。