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

@capitalthought/relationship-radar-mcp

v0.4.0

Published

MCP server for Relationship Radar (relradar.ai) — query a person, suggest identity disambiguations, run a deep PI investigation, check source health.

Readme

@capitalthought/relationship-radar-mcp

MCP server for Relationship Radar — query a person across ~70 data sources (Gmail, Calendar, HubSpot, Asana, Airtable, Crunchbase, court records, …) into a relationship-intelligence brief, suggest identity disambiguations, run a deep PI investigation, or check source health.

Wraps the public-but-auth-walled API documented at relradar.ai/AGENTS.md.

Install

Via Claude Code:

claude mcp add relationship-radar npx -y @capitalthought/relationship-radar-mcp \
  --env RADAR_TOKEN=<your-token>

Or any MCP-compatible host (Claude Desktop, Cursor, etc.):

{
  "mcpServers": {
    "relationship-radar": {
      "command": "npx",
      "args": ["-y", "@capitalthought/relationship-radar-mcp"],
      "env": {
        "RADAR_TOKEN": "<your-token>"
      }
    }
  }
}

Configuration

| Env var | Required | Default | Notes | |---|---|---|---| | RADAR_TOKEN | yes | — | Bearer token. Treated as role: "owner" (full source access). Rotate via the relationship-radar repo's scripts/rotate-dashboard-token. | | RADAR_BASE_URL | no | https://relradar.ai | Override for staging or self-hosted. |

Tools

| Tool | Wraps | Use when | |---|---|---| | query_person | POST /query | Full dossier on a known person. Default for "tell me about X" before a meeting. | | suggest_identities | POST /suggest | Cheap pre-flight when the name is ambiguous (Sarah, John Smith). Returns ranked candidates with confidence scores. | | investigate_person | POST /api/investigate | Deep iterative PI agent — picks sources adaptively based on findings, returns a verified identity profile with an evidence chain. Slower + more expensive than query_person. Reserve for high-stakes verification. | | get_health | GET /health/detail | Cron + module_health snapshot. Use to verify radar is healthy before relying on output for high-stakes work. | | get_source_health | GET /admin/source-health | Per-source last-status. Interpret a partial dossier — sources missing from output show up here as error or skipped. NOTE: no_data is healthy (source ran cleanly, just no matches). | | radar_org_prep | GET /admin/orgs/<id> | Pre-flight org snapshot — plan, subscription, members, connected sources, today's usage, alerts. Super-admin only. Call before any org-scoped action. | | radar_mint_api_key | POST /account/api-keys | Mint a new per-org rk_<token>. Returned ONCE — caller must store it. Owner role required. With the legacy DASHBOARD_TOKEN bearer the org_id arg is cosmetic until tenant rk_ tokens exist. |

Example

> Tell me what we know about Patrick Vogt at Capital Factory.

[agent calls query_person({name: "Patrick Vogt", company: "Capital Factory"})]
[returns dossier with relationship snapshot, recent contacts, action items]

Development

npm install
npm run build
npm test

To test the MCP server end-to-end against your local stdio transport:

RADAR_TOKEN=<token> node dist/index.js
# Then connect a host (Claude Desktop, mcp-inspector, etc.) to the stdio.

License

MIT — see LICENSE.

Author

Joshua Baer (@joshuabaer) · Capital Factory.