htb-mcp
Provides tools for interacting with the Hack The Box API, enabling users to manage machines, challenges, prolabs, VPN connections, pwnbox, sherlocks, badges, seasons, and user profile.
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., "@htb-mcplist active machines"
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.
htb-mcp
htb-mcp is an MCP server for Hack The Box.
It wraps HTB API operations as MCP tools so assistants can query and operate HTB directly.
Features
MCP over
stdio(works with common local MCP clients)Structured JSON responses from all tools
Environment-based auth/config (no credential files required)
API-focused actions for users, machines, challenges, VPN metadata, prolabs, seasons, badges, sherlocks, pwnbox
Related MCP server: openclaw-tools-mcp
Requirements
Python
3.10+Hack The Box App Token
Create your HTB App Token in:
https://app.hackthebox.com/account-settings
Installation
cd /path/to/htb-mcp
python3.10 -m venv .venv
source .venv/bin/activate
pip install -e .For development:
pip install -e ".[dev]"Environment Variables
Required:
HTB_APP_TOKEN: HTB App Token
Optional:
HTB_API_BASE_URL: defaulthttps://labs.hackthebox.com/api/HTB_USER_AGENT: defaulthtb-mcp/<version>HTB_VERIFY_SSL:true|false|1|0|yes|no(defaulttrue)HTB_HTTP_PROXYHTB_HTTPS_PROXY
MCP Configuration
Option A: installed command (htb-mcp)
{
"mcpServers": {
"htb": {
"command": "htb-mcp",
"env": {
"HTB_APP_TOKEN": "YOUR_HTB_APP_TOKEN"
}
}
}
}Option B: run module directly from source
{
"mcpServers": {
"htb": {
"command": "python3.10",
"args": ["-m", "htb_mcp"],
"env": {
"PYTHONPATH": "/absolute/path/to/htb-mcp/src",
"HTB_APP_TOKEN": "YOUR_HTB_APP_TOKEN"
}
}
}
}Running Manually
HTB_APP_TOKEN=YOUR_HTB_APP_TOKEN htb-mcpResponse Envelope
All tool responses follow one envelope:
Success:
{
"ok": true,
"data": {}
}Error:
{
"ok": false,
"error": {
"type": "ErrorType",
"message": "Human readable message",
"details": {}
}
}Tool Catalog
User:
htb_user_gethtb_user_activityhtb_user_respect
Machine:
htb_machine_listhtb_machine_gethtb_machine_activehtb_machine_starthtb_machine_stophtb_machine_resethtb_machine_extendhtb_machine_submit_flaghtb_machine_rate_flag
Challenge:
htb_challenge_listhtb_challenge_searchhtb_challenge_gethtb_challenge_submithtb_challenge_instance_starthtb_challenge_instance_stophtb_challenge_instance_status
Prolabs and Certificates:
htb_prolabs_listhtb_prolabs_gethtb_prolabs_submithtb_certificate_list
VPN:
htb_vpn_servers_listhtb_vpn_accessible_listhtb_vpn_switchhtb_vpn_active_connections
Pwnbox:
htb_pwnbox_statushtb_pwnbox_terminate
Sherlocks:
htb_sherlock_categorieshtb_sherlock_list
Badges:
htb_badges_list
Seasons:
htb_season_listhtb_season_detailshtb_season_current_machines
Development
Run tests:
PYTHONPATH=src python3.10 -m pytest -qQuick syntax check:
PYTHONPATH=src python3.10 -m py_compile src/htb_mcp/*.py src/htb_mcp/htbapi/*.pyProject Layout
htb-mcp/
src/htb_mcp/
server.py
tools.py
config.py
client_factory.py
serialization.py
htbapi/
tests/Notes
This project depends on HTB API behavior and can be affected by HTB-side changes.
Keep your
HTB_APP_TOKENsecret.
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
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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/cativist/htb-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server