A cross-platform TUI/CLI/API/MCP command library for authorized security testing.
Project description
PentQuiver
A blazing-fast, cross-platform command library and cheat-sheet launcher for pentesters - TUI, CLI, HTTP API and MCP server in one.
Search 2,800+ security commands, fill in the arguments, and copy or run them - from your terminal, your scripts, or your AI assistant.
Legal notice / Aviso legal
PentQuiver is a command launcher intended solely for authorized security testing, CTF competitions and education.
You are fully responsible for how you use this tool. The author accepts no responsibility and assumes no liability for any misuse, damage, or illegal activity carried out with it. Only test systems that you own or for which you have explicit written permission.
El autor no se hace responsable del uso que se le de a esta herramienta.
This notice is also shown every time the TUI starts and must be accepted first.
Features
- Fuzzy search across 2,800+ commands / 240+ tools (recon, web, Active Directory, credential access, post-exploitation, forensics and more).
- Argument templates -
{{arg}}and{{arg|default}}with a live preview. - Four interfaces, one core: interactive TUI, scriptable CLI, an HTTP API, and an MCP server so AI assistants can query your library.
- Hexagonal architecture (ports and adapters) - clean, testable, extensible.
- Cross-platform - Linux, macOS, Windows, WSL. Pure Python, no OS-specific build constraints.
- Simple YAML cheat-sheets - bring your own, or use the bundled collection.
Install
pip install pentquiver # TUI + CLI
pip install "pentquiver[api]" # + HTTP API (FastAPI/uvicorn)
pip install "pentquiver[mcp]" # + MCP server
pip install "pentquiver[all]" # everything
On Linux, clipboard copy needs xclip or xsel (sudo apt install -y xclip).
Usage
pentquiver # launch the TUI (default)
pentquiver list nmap # print matching commands (id + name)
pentquiver show nmap/nmap-ping-scan
pentquiver api --port 8000 # serve the HTTP API
pentquiver mcp # serve the MCP server over stdio
pentquiver --version
TUI keys
| Key | Action |
|---|---|
/ |
focus search, Up/Down move, Enter open then fill args then Copy/Run |
c |
quick-copy the raw template, Esc clear / back, q quit |
HTTP API
pentquiver api # http://127.0.0.1:8000 (interactive docs at /docs)
curl 'localhost:8000/commands?q=nmap&limit=5'
curl -X POST localhost:8000/commands/nmap/nmap-ping-scan/resolve \
-H 'content-type: application/json' -d '{"values":{"target":"10.0.0.0/24"}}'
MCP (AI assistants)
Add to your MCP client (for example Claude Desktop / Claude Code):
{ "mcpServers": { "pentquiver": { "command": "pentquiver", "args": ["mcp"] } } }
Tools exposed: search_commands, list_sources, get_command,
get_arguments, resolve_command.
Architecture
Hexagonal (ports and adapters) - the domain and use cases never depend on I/O:
pentquiver/
domain/ entities + pure logic (Command, placeholders, fuzzy search)
application/ ports (interfaces) + use-case service (CommandLibrary)
adapters/
inbound/ tui, cli, api, mcp (driving)
outbound/ yaml, system(clipboard/exec) (driven)
config/ filesystem locations
container.py composition root (wires adapters into the service)
Swapping a data source or adding an interface means writing one adapter - the core stays untouched.
Cheat-sheet format
Drop .yml/.yaml files in your user directory:
- Linux/macOS:
~/.config/pentquiver/cheatsheets/ - Windows:
%APPDATA%\pentquiver\cheatsheets\ - or set
PENTQUIVER_HOMEto any directory, or pass-d PATH.
commands:
- name: Nmap - quick TCP scan
command: nmap -sV -sC -oA {{outfile|scan}} {{target}}
description: Service/version detection with default scripts.
tags: [nmap, scan, recon]
Both the native shape above and the tool/actions shape are auto-detected.
The large bundled collection under pentquiver/cheatsheets/vendor/ is redistributed
under the MIT license - see THIRD-PARTY-NOTICES.md.
Contributing and support
PRs and new cheat-sheets welcome. If PentQuiver saves you time, you can support it:
License
PentQuiver's own code is MIT. Bundled cheat-sheet data keeps its upstream MIT license (see THIRD-PARTY-NOTICES.md). Use responsibly.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file pentquiver-0.1.0.tar.gz.
File metadata
- Download URL: pentquiver-0.1.0.tar.gz
- Upload date:
- Size: 435.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
474803c9539851c969e6920a2f4b7ab945199d72a1fd4a06bcdb108601fabb75
|
|
| MD5 |
d3afe7c35309bfa09fc97217cfdca0db
|
|
| BLAKE2b-256 |
f296edc05bb4c372d74319c5891e67d851a105c1d15da2f3d8b30b3de29ba7ff
|
File details
Details for the file pentquiver-0.1.0-py3-none-any.whl.
File metadata
- Download URL: pentquiver-0.1.0-py3-none-any.whl
- Upload date:
- Size: 609.8 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.2.0 CPython/3.14.6
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
2220edb707e98e8ddcba7111ce6c21d40c4ed461bb72e6a98ae89fff9b5ab6d1
|
|
| MD5 |
c5f70548b57e0b12d3d3e3b9fcb7a59d
|
|
| BLAKE2b-256 |
d330ea2c4a00f722a40fec306f40ca29ffcc21d555eef0df10242afca52e08b4
|