npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

osint-agent-mcp

v1.0.0

Published

MCP server for OSINT workflows backed by local writeups

Readme

osint-agent-mcp

An MCP server for OSINT workflows, powered by local knowledge from writeups/. Implementation stack: hono + @hono/mcp.

Install from npm

npm i -g osint-agent-mcp

or run it directly:

npx -y osint-agent-mcp

Setup

bun install
bun run dev

Codex MCP (One Command)

Register this server in Codex with a single command:

codex mcp add osint-agent-mcp-local -- bun --cwd "$(pwd)" run mcp:stdio

If you run the command outside this repository, replace "$(pwd)" with the absolute path to this project.

If you use the published npm package:

codex mcp add osint-agent-mcp -- npx -y osint-agent-mcp

Verify registration:

codex mcp list

Start Modes

# HTTP mode (default)
bun run dev:http
bun run start:http

# Command mode (stdio transport for MCP clients)
bun run dev:stdio
bun run start:stdio
bun run mcp:stdio

Build / Start

bun run build
bun run start

Checks

bun run typecheck
bun run test

After startup:

  • GET /health
  • ALL /mcp

Implemented MCP tools

  • search_past_writeups
    • Full-text search over writeups/**/README.md and return top matching hints
  • list_frequent_domains_in_writeups
    • Aggregate frequently referenced domains from writeups
  • duckduckgo_search_api
    • Query DuckDuckGo Instant Answer API (no API key required)
  • wayback_cdx_lookup
    • Query Wayback Machine CDX API snapshots
  • jina_fetch_url
    • Fetch page text through https://r.jina.ai/
  • capsolver_create_and_poll
    • Create a CapSolver task and poll until completion (apiKey passed as input)
  • yandex_image_search_scrape
    • Scrape Yandex image search results without an API key
  • archive_today_lookup
    • Fetch archive.today/archive.md timemap entries
  • domain_recon_bundle
    • Bundle DNS / RDAP / crt.sh / whois / optional Shodan lookups
  • extract_metadata_from_media
    • Extract metadata from local or remote media (exiftool/ffprobe/exifr)