grimoire
Integrates with Obsidian vaults, enabling indexing and searching of markdown notes with wikilink, tag, and YAML frontmatter support.
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., "@grimoiresearch for kerberoasting techniques and tools"
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.
Grimoire
Offensive knowledge, offline. One search box for every playbook.
by Penthertz - part of the RF-Swift toolkit
Grimoire clones a curated set of security knowledge bases, indexes all of their
markdown/YAML into a single full-text search index, and serves a fast web UI.
Type ssrf, xss, sql, kerberoast, sudo, jwt, ... and it instantly
surfaces the matching pages across every source - HackTricks,
PayloadsAllTheThings, the OWASP guides, the living-off-the-land databases, and
your own notes - with a link back to each original.
Built to run anywhere (single Python script, no mandatory services) and to be embedded in RF-Swift.
GRIMOIRE offensive knowledge, offline
> ssrf_ -> HackTricks . PayloadsAllTheThings . WSTG . API Top 10 ...Features
Unified search over 20+ sources via SQLite FTS5 with BM25 ranking - one query language regardless of how each repo is authored (mdBook, mkdocs, Jekyll, Hugo, plain markdown, YAML).
Fully offline once fetched. No telemetry, no external calls at runtime.
Spawnable web service -
grimoire.py serve(bind host/port; run it in the background or as a container service).Provenance - every doc shows its source and a link to the original file on GitHub, so you always know where guidance came from.
Rich rendering - images display and relative
.mdlinks navigate inside the viewer (relative<img>/links are rewritten to a guarded/asset//docendpoint). Note: for sparse sources (e.g. Ghidra), images stored outside the checked-out paths won't be present - widen the source'ssparse:list if needed.Copy-ready - one-click copy buttons on every code/command block.
OSINT note - OSINT tools mostly target individuals; scope and document collection to what an engagement justifies (GDPR), especially for named people.
Obsidian-friendly - point it at your vault;
[[wikilinks]],#tagsand YAML frontmatter are handled (links/tags become one-click searches).Bring your own docs - drop markdown in
custom/or register a local path.Optional native builds - render a source's own mdBook/mkdocs site when the toolchain is present; search never depends on it.
Attach an AI model (MCP) -
grimoire.py mcpexposes the index over the Model Context Protocol, so Claude / Codex / Gemini / any MCP client can search, read docs, build source-backed technical checklists, assemble a topic's reads into a complete cited tutorial, and review whether the docs are current / find better techniques. It also adapts to your engagement context (targets, interfaces, hardware/SDRs, SIM, RF) so suggestions fit your assessment. Defaultreadmode is read-only (no shell, no writes); opt into--mode assist|autoto let it detect/install missing tools (RF-Swift recipe, else the host package manager) and run steps, behind a destructive-command denylist and a target scope. See docs/MCP_TUTORIAL.md.
Related MCP server: Grimoire
Sources
Curated in sources.yaml, grouped by category:
Category | Sources |
| HackTricks, HackTricks Cloud, PayloadsAllTheThings, The Hacker Recipes, six2dez Pentest Book |
| InternalAllTheThings, ired.team, OCD mindmaps |
| HardwareAllTheThings |
| OWASP MASTG, OWASP MASVS |
| OWASP WSTG, Cheat Sheet Series, ASVS, API Security Top 10 |
| GTFOBins, LOLBAS, GTFOArgs, LOLDrivers, LOOBins, WADComs |
| mytechnotalent/Reverse-Engineering, Nightmare, how2heap (drop a PDF book in |
| radare2book, rizin book, angr docs, Ghidra (in-tree docs) |
| Awesome-Reversing (ReversingID + tylerha97), reverse-engineering (wtsxDev), Awesome Malware Analysis, Awesome Android RE |
| Awesome Firmware Security |
| awesome-osint (jivoi), OSINT Framework (JSON tree), OSINT Collection, Awesome-OSINT-List, osint_stuff_tool_collection, sinwindie/OSINT, Trace Labs awesome-osint |
| awesome-forensics, awesome-incident-response, awesome-memory-forensics, ForensicArtifacts, KapeFiles, CERT-SG IRM, PagerDuty IR, IR-plan-template, Velociraptor, Volatility 3, plaso, Dissect |
| findus/fault-injection-library, ChipWhisperer (+ Jupyter Fault101/201), ChipSHOUTER-PicoEMP, Faulty Cat, SimpleLink-FI, PicoGlitcher-LPC1343 |
| awesome-bluetooth-security, BlueToolkit, Sniffle, Ubertooth, InternalBlue, SweynTooth, BrakTooth, KNOB/BIAS/BLUFFS, Mirage, BtleJack, bleah, OpenHaystack, Continuity, apple_bleee, BLE CTF |
| awesome-wifi-security, 0xor0ne awesome-list, MacStealer/FragAttacks/KRACK (Vanhoef), Dragonslayer/Dragondrain/Dragonforce, hcxdumptool/hcxtools, aircrack-ng, AngryOxide, airgeddon, eaphammer, hostapd-mana, wifipumpkin3, DragonShift, WiFiChallengeLab |
| PySDR, ThinkDSP, SDR-for-Engineers (lectures+labs), SDRangel, SDR++, inspectrum, URH, liquid-dsp, mhostetter/sdr, scikit-dsp-comm, CommPy, SoapySDR, learnSDR |
| awesome-compliance, NIST OSCAL, OWASP SAMM (NIST PDFs / CIS / SCF crosswalk / CCM / SANS / ANSSI-EBIOS / NIS2-DORA-CRA / CNIL / CISO Assistant = drop-in or run-the-tool) |
Install & run
Install as a CLI with pipx (recommended) or pip - this puts grimoire on your PATH:
pipx install . # (from a checkout)
grimoire all # clone every source + build the index
grimoire serve # http://127.0.0.1:8000
grimoire mcp # attach an AI model over MCPWhen installed, user state (the editable sources.yaml, custom/, and the
data/ index) lives in $GRIMOIRE_HOME (default ~/.local/share/grimoire);
the manifest is seeded from a packaged default on first run.
Or run straight from a checkout (no install):
pip install -r requirements.txt # PyYAML + markdown (both optional-degrading)
./grimoire.py all # clone every source + build the index
./grimoire.py serve # http://127.0.0.1:8000See docs/QUICKSTART.md for the day-to-day commands and search tips.
Commands
Command | What it does |
| git clone/pull sources into |
| optional native mdBook/mkdocs render into |
| incremental FTS5 index at |
| start the web search UI |
|
|
| refresh docs: |
| expose Grimoire over MCP (stdio) so an AI model can attach |
Docs can also be refreshed live from the web UI with the Update docs button
(runs a background fetch + reindex and streams progress).
Code layout (MVC)
The entrypoint grimoire.py is a thin launcher; the implementation lives in the
grimoire_app/ package, split cleanly:
Module | Responsibility |
| filesystem paths + indexing constants (single source of truth) |
| data: sources manifest, fetch, index, the |
| rendering: markdown/obsidian/pdf/notebook -> safe HTML, CSP'd pages |
| HTTP handler + CLI commands wiring model and view together |
| the MCP server (search/docs/checklist/tutorial/review tools + prompts) |
| engagement context (targets, hardware, SIM, RF) for the MCP layer |
| gated execution: env detect, install resolver, command runner |
The package also ships web/ (the UI) and sources.default.yaml (the seed
manifest), so a pip/pipx install is self-contained.
All SQL is funnelled through model.Index, where every statement is
parameterized (values are bound, never string-formatted), and free-text queries
pass through _fts_query (alphanumeric prefix tokens only) before reaching a
MATCH expression - so a poisoned query can break out of neither the SQL nor the
FTS5 grammar. The test suite includes dedicated SQLi, XSS, SSTI, CSRF, and
path-traversal cases (python3 -m unittest).
How it works
fetch shallow-clones each
sources.yamlrepo intodata/sources/<name>.index walks every
*.md/*.markdown/*.mdx/*.rst/*.yml/*.yamlfile (.rstso Sphinx-documented projects contribute their full docs, not just the README) and stores it in a SQLite FTS5 table (data/index.db) with BM25 ranking. This is the unified layer: all sources, one query, regardless of authoring format. A source can pull extra extensions withindex_ext:(e.g..ipynb,.json) and, to dump the maximum, sources are indexed whole unless adocs_dir:/sparse:is set to scope a huge repo.serve is a dependency-free
http.serverexposing the UI plus a small API:GET /search UIGET /api/search?q=&cat=ranked JSON results (with highlighted snippets)GET /api/sourcescategories for the filter chipsGET /doc?src=&path=renders a doc (markdown -> HTML) with an origin banner, copy buttons and Obsidian link/tag handling
build (optional) runs
mdbook/mkdocswhen available for pixel-perfect browsing; the index always reads raw markdown so the tool works without it.
Add your own docs
Both are picked up by grimoire.py index:
Drop-in - put markdown in
custom/(indexed as sourcecustom).Registered path / Obsidian vault - add to
sources.yaml:- name: my-vault title: My Vault type: local path: /home/me/ObsidianVault category: custom
Embedding in RF-Swift
Grimoire is the grimoire.py launcher + the grimoire_app/ package + manifest
web dir, with no required services (stdlib
sqlite3/http.server;PyYAML/markdownoptional). To bake an offline knowledge base into an image: runfetch+indexat build time, shipdata/index.db(anddata/sources/for the doc viewer), thengrimoire.py serveas a runtime command.
Security
See docs/SECURITY.md for the threat model, the controls (parameterized
SQL, CSP/XSS, path-traversal and doc-extension allowlists, tool-name and git-URL
validation, default-off execution), and the residual risks you must understand
before exposing serve or enabling MCP --mode assist|auto.
License & attribution
Grimoire's own code is released under the MIT License (see LICENSE).
The license covers Grimoire itself only. Grimoire aggregates and indexes third-party documentation; each source keeps its own license and authorship, and is cloned at runtime rather than redistributed here. The origin banner in the viewer links back to the upstream repository for every document. Review and respect each project's license before redistribution.
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/PentHertz/grimoire'
If you have feedback or need assistance with the MCP directory API, please join our Discord server