Are you the author? Sign in to claim
OSINT suite for Claude — 898 curated OSINT tools as an Agent Skill + MCP server (classifier, URL builder, IBAN check, PI
"The scouts of Claudius" — a nod to the Roman reconnaissance units (exploratores) and to Claude. OSINT reconnaissance, ported for AI agents.
[!WARNING] This is ALPHA software. Do not use it in production before testing.
Claudii Exploratores is a very early (alpha), community-maintained port of the Exploratores toolkit. It has been functionally tested, but it has not been hardened or validated for production or operational use. Search URLs, validators and the tool catalog may contain errors inherited from upstream or introduced by the port. Verify every output independently, test thoroughly in a safe environment, and validate results against trusted sources before relying on them. Use at your own risk — see Disclaimer.
Claudii Exploratores turns the Exploratores OSINT Toolkit — a static web application of curated OSINT search links — into two AI-native distributions:
skill/) — a drop-in skill for Claude (Opus/Sonnet) in
Claude Code, Cowork or the Agent SDK. It teaches the model professional OSINT
tradecraft (analytic standards, the 5W1H method, OPSEC) and gives it a CLI that
turns any indicator into a curated set of search links.mcp/) — a Model Context Protocol
server (Python / FastMCP) exposing the same engine as callable tools for Claude
Desktop or any MCP-compatible client.Both share one language-neutral core: a catalog of 898 OSINT tools across 24 categories, an indicator classifier, input validators, an offline IBAN verifier and a reversible PII redactor — all ported from the original toolkit.
[!IMPORTANT] These tools build OSINT search URLs; they never open pages by themselves. Opening and reading stays with the operator (or an explicitly-invoked browser agent), so OPSEC — VPN, sterile browser profile — remains under human control.
indicator ──▶ classify ──▶ build fields ──▶ select matching tools ──▶ URL-encode ──▶ curated link set
"Mario Rossi" PERSON_NAME {firstname,lastname,…} names + records %20… grouped Markdown / JSON
The engine is a faithful Python port of the toolkit's original JavaScript logic
(indicator-classifier.js, validators.js, main.js), so generated URLs match
what the web toolkit produces.
Claudii-Exploratores/
├── skill/claudii-exploratores/ # the Agent Skill (SKILL.md + scripts + references)
│ ├── SKILL.md
│ ├── scripts/ # exploratores.py CLI + engine + catalog.json
│ └── references/ # methodology.md, catalog_overview.md
├── mcp/ # the MCP server (Python, FastMCP)
│ ├── exploratores_osint_mcp/ # package: server.py + engine + catalog.json
│ ├── pyproject.toml
│ ├── config.example.json
│ └── README.md
├── shared/ # single source of truth for the engine + catalog
│ ├── osint_core.py # classifier, field builder, URL renderer
│ ├── iban_tools.py, redactor.py, _iban_countries.py
│ └── catalog.json # 898 tools (generated)
├── scripts/ # build, extraction & verification tooling
│ ├── extract_catalog.js # (re)generate catalog.json from the web toolkit
│ ├── build_release.sh # sync engine into skill+mcp, package .skill
│ ├── classify_queries.py # desk classification (auth/VPN) -> CSV
│ ├── build_verification_worklist.py # group queries by host for live checks
│ ├── record_verification.py # merge live-probe results into the worklist
│ ├── generate_live_report.py # render the live-verification report
│ └── generate_access_guide.py # render the user-facing access guide
├── docs/ # INSTALL, DISTRIBUTION, access & auth/VPN guides
├── dist/ # build outputs (.skill archive) — git-ignored
├── LICENSE # AGPL-3.0 (inherited from Exploratores)
└── NOTICE
shared/ is authoritative. scripts/build_release.sh copies the engine + catalog
into both skill/ and mcp/ so each is independently installable.
mcp package).docs/access-requirements-guide.md
(live-verified) and the desk analysis in
docs/query-auth-vpn-classification.md.Copy the skill into your skills directory, or install the packaged archive from your client's UI:
mkdir -p ~/.claude/skills
cp -R skill/claudii-exploratores ~/.claude/skills/
# or install dist/claudii-exploratores.skill from your Claude client
Then simply ask, e.g. "Run OSINT on the domain example.com".
cd mcp
pip install -e . # or: uv pip install -e .
Add the server to your MCP client config (see mcp/README.md and
docs/INSTALL.md):
{
"mcpServers": {
"claudii-exploratores": {
"command": "python",
"args": ["-m", "exploratores_osint_mcp.server"]
}
}
}
Drive the skill's CLI directly:
cd skill/claudii-exploratores
# Detect what an indicator is
python scripts/exploratores.py classify "john.doe@example.com"
# Build a curated OSINT link set (grouped Markdown by default)
python scripts/exploratores.py urls "example.com" --format markdown
# Force a type, add structured fields, or narrow to specific platforms
python scripts/exploratores.py urls "Mario Rossi" --type PERSON_NAME \
--field firstname=Mario --field lastname=Rossi
python scripts/exploratores.py urls "johndoe" --categories x,instagram,vk
# Utilities
python scripts/exploratores.py iban "GB82 WEST 1234 5698 7654 32"
python scripts/exploratores.py redact "Contact john@x.com from 8.8.8.8"
python scripts/exploratores.py search "wayback"
| Tool | Purpose |
|---|---|
classify_indicator(value) | Detect the indicator type(s) with confidence scores. |
build_osint_urls(value, indicator_type?, categories?, fields?, include_onion?, limit?) | Curated OSINT search-URL set for the indicator. |
search_catalog(query, limit?) | Free-text search across the 898-tool catalog. |
list_categories() | Categories and tool counts. |
verify_iban(value) | Offline IBAN validation (ISO 13616 mod-97). |
redact_pii(text, only?, custom_patterns?) | Redact PII, returning a reversible map. |
restore_pii(text, redaction_map) | Reverse a redaction. |
If the upstream toolkit is updated, regenerate everything from it:
scripts/build_release.sh /path/to/Exploratores-3.4.1
This re-extracts catalog.json (with human-readable labels harvested from the
toolkit's HTML pages), re-syncs the engine into both deliverables, and repackages
the .skill archive.
Alpha (v1.0.0-alpha). The suite is functional and has passed an internal QA pass (catalog integrity, URL encoding, IBAN and redaction round-trips, MCP tool registration). It has not been hardened for production. Known limitations:
libphonenumber logic of the original web toolkit.Please test in a controlled environment and report issues before any operational use.
Contributions and bug reports are welcome.
shared/ (the single source of truth) and run
scripts/build_release.sh to sync them into skill/ and mcp/.Please follow the conventions in the upstream AGENTS.md and preserve attribution.
.onion) and require Tor
Browser; exclude them with --no-onion / include_onion=false.To report a security concern, please open a private security advisory on GitHub rather than a public issue.
This software is provided "as is", without warranty of any kind, express or implied. It is beta and not intended for production use. The authors and contributors accept no liability for any damage, loss, legal consequence or misuse arising from its use. You are solely responsible for ensuring your use complies with all applicable laws, regulations and third-party terms of service, and for independently verifying every result before acting on it.
Licensed under the GNU Affero General Public License v3.0 (AGPL-3.0) — the same
licence as the original work. See LICENSE and NOTICE.
Derived from the Exploratores OSINT Toolkit by Ramingo (SOsintOps). This project ports its search catalog, classifier, validators, IBAN table and redactor concept to a Python engine packaged as a Claude skill and an MCP server. All credit for the original toolkit and its curation belongs to the upstream author.
Run Claude Code as an MCP server so any agent can delegate coding tasks to it
Browser automation using accessibility snapshots instead of screenshots
Google's universal MCP server supporting PostgreSQL, MySQL, MongoDB, Redis, and 10+ databases
Official GitHub integration for repos, issues, PRs, and CI/CD workflows