osint-toolbox-mcp
An MCP server that lets AI agents run classic OSINT tools on your own machine: Sherlock, Maigret, Holehe, GHunt, theHarvester, SpiderFoot, Blackbird, PhoneInfoga and ExifTool. No API keys and no cloud service in between: the tools run locally and query public sources directly.
Ask your assistant "which sites have an account for jane@example.com?" or "what can you find about example.com?", and it picks the tools, runs them and reads the results for you.
Tools
| Tool | Give it | You get | Needs |
|---|---|---|---|
sherlock_username_search |
username | accounts on 400+ sites | Sherlock |
maigret_username_search |
username | accounts on up to 3000+ sites, with the profile data found on them | Maigret |
blackbird_username_search |
username | accounts on the 700+ sites of the WhatsMyName list | Blackbird checkout (not in the Docker image) |
holehe_email_search |
email address | which of about 120 sites have an account for it | Holehe |
ghunt_google_search |
Google account email or Gaia ID | name, profile picture, Maps reviews, calendar and other public data | GHunt, logged in |
theharvester_domain_search |
domain or company name | email addresses, subdomains, hosts, IP addresses | theHarvester |
spiderfoot_scan |
domain, IP, email, phone, username, person name... | findings grouped by type | SpiderFoot checkout |
phoneinfoga_scan |
phone number | country, number formats, carrier (with an API key), search queries | PhoneInfoga |
exiftool_metadata |
path to a local file | GPS coordinates, camera, author, software, timestamps | ExifTool |
Only installed tools are offered to the agent. Runs take from seconds to half an hour (a full SpiderFoot scan); requests run in parallel and can be cancelled.
Quick start
Pick one:
- Docker: every tool but Blackbird in one image, nothing else to install.
- uvx: the server uses the tools installed on your machine.
Docker
The image is large, so pull it once before adding the server; otherwise the first start can take longer than your client waits:
docker pull ghcr.io/renkagod/osint-toolbox-mcp
Add the server to your client:
{
"mcpServers": {
"osint-toolbox": {
"command": "docker",
"args": ["run", "-i", "--rm", "ghcr.io/renkagod/osint-toolbox-mcp"]
}
}
}
Files for ExifTool, the GHunt login, API keys and proxies are covered in Docker details.
uvx
Install uv, install the tools you want and check what the server finds:
uvx osint-toolbox-mcp --check
Add the server to your client:
{
"mcpServers": {
"osint-toolbox": {
"command": "uvx",
"args": ["osint-toolbox-mcp"]
}
}
}
To run the latest code from main instead of a release, use uvx --from git+https://github.com/renkagod/osint-toolbox-mcp osint-toolbox-mcp.
Connect your client
One-click install:
| Client | Docker (eight tools) | uvx (your tools) |
|---|---|---|
| Cursor | ||
| VS Code | ||
| VS Code Insiders | ||
| LM Studio |
Claude Desktop: download osint-toolbox-mcp-<version>.mcpb from the latest release and open it. Claude Desktop installs it as an extension and asks for the optional SpiderFoot, Blackbird and ExifTool locations; the other tools are found on PATH. You can also paste the JSON above into Settings → Developer → Edit Config.
Claude Code:
claude mcp add osint-toolbox -- uvx osint-toolbox-mcp
claude mcp add osint-toolbox -- docker run -i --rm ghcr.io/renkagod/osint-toolbox-mcp
Clients that read the mcpServers JSON above (paste it into the file):
| Client | Where the config lives |
|---|---|
| Cursor | ~/.cursor/mcp.json, or .cursor/mcp.json in a project |
| Windsurf | ~/.codeium/windsurf/mcp_config.json |
| Cline | MCP Servers → Configure → cline_mcp_settings.json |
| Roo Code | .roo/mcp.json in a project, or the global MCP settings |
| Gemini CLI | ~/.gemini/settings.json |
| Antigravity | agent panel "…" → MCP Servers → Manage MCP Servers → View raw config |
| LM Studio | Program tab → Install → Edit mcp.json |
| Kiro | ~/.kiro/settings/mcp.json, or .kiro/settings/mcp.json in a project |
Clients with their own format (shown with uvx; for Docker, use docker with the arguments run -i --rm ghcr.io/renkagod/osint-toolbox-mcp):
VS Code
code --add-mcp '{"name":"osint-toolbox","command":"uvx","args":["osint-toolbox-mcp"]}'
Or in .vscode/mcp.json:
{
"servers": {
"osint-toolbox": {
"type": "stdio",
"command": "uvx",
"args": ["osint-toolbox-mcp"]
}
}
}
Codex CLI
codex mcp add osint-toolbox -- uvx osint-toolbox-mcp
Or in ~/.codex/config.toml, with a longer timeout for slow scans:
[mcp_servers.osint-toolbox]
command = "uvx"
args = ["osint-toolbox-mcp"]
tool_timeout_sec = 1800
Zed
In settings.json:
{
"context_servers": {
"osint-toolbox": {
"command": "uvx",
"args": ["osint-toolbox-mcp"],
"env": {}
}
}
}
Goose
In ~/.config/goose/config.yaml:
extensions:
osint-toolbox:
name: osint-toolbox
type: stdio
cmd: uvx
args: [osint-toolbox-mcp]
enabled: true
timeout: 1800
opencode
In opencode.json:
{
"$schema": "https://opencode.ai/config.json",
"mcp": {
"osint-toolbox": {
"type": "local",
"command": ["uvx", "osint-toolbox-mcp"],
"enabled": true
}
}
}
Continue
In .continue/mcpServers/osint-toolbox.yaml:
name: OSINT Toolbox
version: 1.0.0
schema: v1
mcpServers:
- name: osint-toolbox
type: stdio
command: uvx
args:
- osint-toolbox-mcp
Install the tools
Skip this if you use Docker, unless you want Blackbird. Otherwise install any subset. Put each Python tool in its own environment with uv tool install (or pipx install): their dependencies conflict with each other.
| Tool | Install | Tested with |
|---|---|---|
| Sherlock | uv tool install sherlock-project |
0.16 |
| Holehe | uv tool install holehe |
1.61 |
| Maigret | uv tool install maigret |
0.6 |
| GHunt | uv tool install ghunt, then ghunt login |
2.3.4 |
| theHarvester | uv tool install git+https://github.com/laramies/theHarvester |
4.11.1 |
| PhoneInfoga | a binary from its releases, on PATH | 2.11.0 |
| ExifTool | exiftool.org, brew install exiftool or apt install libimage-exiftool-perl |
13.59 |
| SpiderFoot | a checkout, see below | commit 0f815a2 |
| Blackbird | a checkout, see below | commit b455050 |
SpiderFoot and Blackbird run from git checkouts. Give each its own .venv, which the server picks up automatically, and tell the server where the checkout is:
git clone https://github.com/smicallef/spiderfoot
cd spiderfoot
uv venv --python 3.12
uv pip install -r requirements.txt
Then set OSINT_SPIDERFOOT_DIR to that folder in your client's config (env). Blackbird is the same with https://github.com/antoniaci/blackbird and OSINT_BLACKBIRD_DIR. SpiderFoot pins lxml<5, which has no builds for Python 3.13 and newer; to use a newer Python, apply patches/spiderfoot-requirements.patch first.
Finally, check: uvx osint-toolbox-mcp --check lists every tool as ok, missing (with how to install it) or broken (found but fails to start).
Configuration
All settings are environment variables, set in the env block of your client's config:
{
"mcpServers": {
"osint-toolbox": {
"command": "uvx",
"args": ["osint-toolbox-mcp"],
"env": {
"OSINT_SPIDERFOOT_DIR": "/home/me/spiderfoot",
"OSINT_EXIFTOOL": "/opt/exiftool/exiftool"
}
}
}
}
| Variable | Meaning |
|---|---|
OSINT_SHERLOCK, OSINT_HOLEHE, OSINT_MAIGRET, OSINT_GHUNT, OSINT_THEHARVESTER, OSINT_PHONEINFOGA, OSINT_EXIFTOOL |
Full path to the tool, when it isn't on PATH |
OSINT_SPIDERFOOT_DIR, OSINT_BLACKBIRD_DIR |
Folder of the SpiderFoot or Blackbird checkout |
OSINT_SPIDERFOOT_PYTHON, OSINT_BLACKBIRD_PYTHON |
Python to run the checkout with; by default its .venv, then python on PATH |
OSINT_MAX_OUTPUT_CHARS |
Longest result returned to the model, 100000 by default; 0 for no limit |
HTTP_PROXY, HTTPS_PROXY, ALL_PROXY |
Passed on to the tools; whether a tool uses them depends on the tool |
Besides PATH, the server looks in the folders uv tool and pipx install into (~/.local/bin by default), which desktop apps often leave out of PATH.
Docker details
-
Blackbird is not in the image: it has no license that allows redistributing it. Install it yourself to use it.
-
ExifTool: the container sees only mounted files. Add
-v /path/to/files:/data:roto the arguments and ask about/data/photo.jpg. -
GHunt: log in once into a named volume, then mount it:
docker run -it --rm --entrypoint ghunt -v osint-toolbox-ghunt:/home/osint/.malfrats ghcr.io/renkagod/osint-toolbox-mcp loginGHunt's listening mode (option 1) doesn't work in a container; pick option 2 (paste from the GHunt Companion extension) or 3 (an
oauth_token, see GHunt's README). -
API keys: theHarvester reads
/home/osint/.theHarvester/api-keys.yaml(mount your file there), PhoneInfoga reads its keys from environment variables (-e NAME=value). -
Proxy:
-e HTTPS_PROXY=http://host.docker.internal:8080, for example. -
Tags:
latestand version tags such as1.0.0for releases,edgefor the currentmain. Built for linux/amd64 and linux/arm64.
A full configuration:
{
"mcpServers": {
"osint-toolbox": {
"command": "docker",
"args": [
"run", "-i", "--rm",
"-v", "/home/me/osint-files:/data:ro",
"-v", "osint-toolbox-ghunt:/home/osint/.malfrats",
"ghcr.io/renkagod/osint-toolbox-mcp"
]
}
}
}
Example requests
- "Which sites have an account registered to jane.doe@example.com?"
- "Search for the username jdoe_1987 with Sherlock and Maigret and compare what they find."
- "What subdomains and email addresses are public for example.com?"
- "Read the metadata of /home/me/photo.jpg and tell me where and with what it was taken."
- "Run a passive SpiderFoot scan of example.com and summarize the findings."
Troubleshooting
- A tool is missing. Run
osint-toolbox-mcp --check(ordocker run --rm ghcr.io/renkagod/osint-toolbox-mcp --check). Desktop apps often start servers with a shorter PATH than your terminal; set the tool'sOSINT_*variable to its full path. - Long scans time out. Many clients stop waiting for a tool after a minute or so. Raise the limit where your client allows it:
MCP_TOOL_TIMEOUTin milliseconds for Claude Code,tool_timeout_secfor Codex CLI,timeoutin milliseconds on the server entry for Gemini CLI,timeoutin seconds for Goose. Otherwise ask for faster runs: apassiveSpiderFoot scan, Maigret withoutall_sites. - GHunt fails. It needs a valid login: run
ghunt login. When the saved session has been revoked,ghunt loginitself fails; runghunt login --cleanto delete it, thenghunt login. - Empty results, errors or captchas. Sites rate-limit and change their pages; retry later, lower the load, or go through a proxy. If a tool fails the same way outside the server, report it to that tool's project.
- Windows and
.bator.cmdwrappers. Arguments to such wrappers pass throughcmd.exe, so the server refuses inputs with characters like&or|; point theOSINT_*variable at the real executable instead.
Responsible use
These tools collect information about real people and organizations. Use them only where you have a lawful basis and authorization: your own accounts, security assessments within scope, research that respects privacy law (GDPR, CCPA and local equivalents) and the sites' terms of service. Don't use them to stalk, harass, dox or otherwise harm anyone. You are responsible for what you run and for what you do with the results.
Contributing
Issues and pull requests are welcome; see CONTRIBUTING.md. Report vulnerabilities privately as described in SECURITY.md. Changes are listed in the changelog.
License and credits
MIT, see LICENSE.
The tools belong to their authors and keep their own licenses: Sherlock, Maigret, Holehe, GHunt, theHarvester, SpiderFoot, Blackbird, PhoneInfoga, ExifTool. The server starts them as separate programs; the Docker image contains them unmodified.
This project started from frishtik/osint-tools-mcp-server (MIT).
Release files for osint-toolbox-mcp 1.0.0
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| osint_toolbox_mcp-1.0.0.tar.gz | 50.7 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| osint_toolbox_mcp-1.0.0-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 75.1 kB
Release files / osint_toolbox_mcp-1.0.0.tar.gz
| Download URL | osint_toolbox_mcp-1.0.0.tar.gz |
|---|---|
| Size | 50.7 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
77a99fc6b01932f13525bf2c1c0d7425ee71f61eef70ab5b47c8f4f0b8bc0c04
|
|
BLAKE2b-256 checksum How to use checksums |
7ee8914f7dda9258166000a4b71a2cc13b93244c000083250286e11842895865
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 23, 2026.
Transparency logRelease files / osint_toolbox_mcp-1.0.0-py3-none-any.whl
| Download URL | osint_toolbox_mcp-1.0.0-py3-none-any.whl |
|---|---|
| Size | 24.4 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
92d4b028aed53ed6985698c09f88bbb01a599acee0114e6332d933029aa21503
|
|
BLAKE2b-256 checksum How to use checksums |
9335b8f8d6a4b2b4d9655e53259bdae9004d0dc3707e126846190256cfb6ca48
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Sep 23, 2026.
Transparency log