Skip to main content
Glama
fitzypopper

osint-mcp-server

by fitzypopper

Pelican — OSINT MCP Server

A general-purpose open-source intelligence (OSINT) MCP server for AI agents. Local-first: run it on your own machine, connect any Model Context Protocol client (OpenCode, Hermes, Claude, Cursor, Cline, etc.), and give your agent one tool surface for broad public-data lookups.

🪿 Why "Pelican"?

Pelicans scan the shoreline for fish — symbolising an OSINT server that scans public data sources for intelligence. Short, distinctive, and animal-themed (like many MCP servers in this space).

Related MCP server: wrg-mcp-server

⚔ Quick start

Install

# Using uv (recommended)
uv venv && uv pip install -e ".[dev]"

# Or using pip
pip install pelican[dev]

# Or via uvx (one-shot)
uvx pelican-mcp

Run the MCP server

# stdio (default — local AI agents)
pelican-mcp

# HTTP / streamable-http (remote agents)
pelican-mcp --transport http          # default port 8000
# or with bearer token auth:
OSINT_MCP_AUTH_TOKEN=$(openssl rand -hex 24) pelican-mcp --transport http

Add to your MCP client config

OpenCode (opencode.json):

{
  "mcpServers": {
    "pelican": {
      "type": "stdio",
      "command": ["uv", "run", "pelican-mcp"]
    }
  }
}

Claude Code:

claude mcp add pelican -- uv run pelican-mcp

CLI (no MCP client needed)

pelican-mcp-cli whois_domain '{"domain": "example.com"}'
pelican-mcp-cli osint_domain_recon '{"domain": "example.com"}'
pelican-mcp-cli --list-tools

šŸ“¦ What Pelican does

32 MCP tools across three coverage tiers:

Tier

Tools (selected)

Domain/Infra

dns_lookup, whois_domain, crtsh_search, geoip, bgp_asn, wayback_urls, email_security, hackertarget_hostsearch

Identity/Social

github_user_info, github_user_repos, reddit_user, keybase_lookup, username_enumerate, gravatar_lookup, email_permutations, domain_email_search

Threat/Breach

check_password_breach, shodan_internetdb, search_darkweb, cisa_kev_catalog, otx_search_pulses, osint_domain_recon, osint_ip_recon, osint_list_sources

Aggregate tools:

  • osint_list_sources — shows all sources and which API keys are configured

  • osint_domain_recon — all-in-one free domain recon (DNS + WHOIS + crt.sh + hosts + email security + geoip), correlated

  • osint_ip_recon — all-in-one free IP recon (geoip + RDAP + BGP + Shodan InternetDB), correlated

šŸ”‘ API keys (all optional)

Most tools work with zero config. Add only the keys for sources you want to unlock:

Variable

Unlocks

Cost

HIBP_API_KEY

breached-account lookups

~$4.50/mo

OTX_API_KEY

OTX pulses + indicator enrichment

free

SHODAN_API_KEY

Shodan search/host tools

free tier

GITHUB_TOKEN

higher GitHub rate limit

free

Copy .env.example to .env and add only the keys you need:

cp .env.example .env
# then edit .env with your keys

Keys are read into SecretStr and never logged.

šŸ› ļø Architecture

pelican/
ā”œā”€ā”€ pelican/              pelican package (v2 compatibility shim: pelican -> osint_mcp_server)
│   ā”œā”€ā”€ __init__.py       legacy import shim
│   ā”œā”€ā”€ config.py         env/.env settings, source status
│   ā”œā”€ā”€ net.py            shared async HTTP/DNS helpers, bounded concurrency
│   ā”œā”€ā”€ server.py         FastMCP entry point, tool registration, transports
│   ā”œā”€ā”€ cli.py            direct tool invocation (no MCP client)
│   └── tools/
│       ā”œā”€ā”€ __init__.py
│       ā”œā”€ā”€ domain.py     DNS, RDAP, crt.sh, geoip, BGP, wayback, email security
│       ā”œā”€ā”€ social.py     GitHub, Reddit, Keybase, username, email, gravatar
│       ā”œā”€ā”€ threat.py     HIBP, Ahmia, Shodan InternetDB, CISA KEV, OTX
│       └── suite.py      source listing + aggregate recon tools
└── tests/                unit tests (5 passing)

Every source is an independent module and every tool is read-only — nothing here writes to any target. Tools are annotated with FastMCP readOnlyHint / idempotentHint / openWorldHint so capable clients can see at a glance that these are safe, repeatable, read-only operations.

šŸ’” Credits & attribution

This project is a from-scratch Python implementation that borrows ideas, tool-shapes, source-selection, and endpoint patterns from several excellent MIT-licensed projects. Thanks to their authors:

Project

What we borrowed

License

badchars/osint-mcp-server

free no-key infra sources (DNS, RDAP, crt.sh, geoip, BGP, wayback, HackerTarget, email security), osint_list_sources and osint_domain_recon aggregate design

MIT

CloudWaddie/osint-mcp

identity/social tool set & endpoint/field patterns (GitHub, Reddit, Keybase, username enumeration, email permutation, Gravatar, HIBP)

MIT

frishtik/osint-tools-mcp-server

concept of wrapping OSINT tools, ethical-use framing

MIT

pete-builds/mcp-threatintel

HIBP k-anonymity password check, Ahmia dark-web search, CISA KEV, explicit FastMCP read-only annotations

MIT

Abraar02/threatwatch-mcp / Vorota-ai/shodan-mcp

always-free Shodan InternetDB tool

MIT

The licensing sections of these works are reproduced in full below.

šŸ“„ License

MIT. See LICENSE.

The three MIT license texts from the credited upstream projects are reproduced in this repository under docs/THIRD_PARTY_LICENSES.md as required by their MIT terms, so attribution survives this derived work's every redistribution.

šŸ›£ļø Roadmap (brainstorm separately)

  • Shodan / VirusTotal / Hunter source implementations (keys already plumbed)

  • Optional CLI-tool wrappers (Sherlock / Maigret / Holehe) when installed

  • Local SQLite cache + background poller for threat feeds (like mcp-threatintel)

  • Publish to PyPI


Pelican — one interface, many sources. For authorized open-source intelligence research only.

Maintenance

ActivityMaintained
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    A
    quality
    C
    maintenance
    Provides AI agents with 37 OSINT tools and 12 data sources to perform unified reconnaissance, domain analysis, and attack surface mapping. It enables agents to query, correlate, and reason across platforms like Shodan, VirusTotal, and Censys in parallel.
    37
    387
    48
    MIT
  • A
    license
    Not graded
    quality
    A
    maintenance
    An MCP server that exposes a 60+ tool security and threat-intel stack to AI agents, enabling secret scanning, Sigma rule generation, ransomware lookup, OSINT, and deep research.
    1
    MIT
  • A
    license
    Not graded
    quality
    D
    maintenance
    MCP server that exposes 108+ omega-cli OSINT tools for reconnaissance, web analysis, threat intelligence, and reporting, enabling AI assistants to perform comprehensive open-source intelligence tasks.
    MIT

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/fitzypopper/osint-pelican-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server