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

@stellar-light/scout-mcp

v1.0.0

Published

Stellar Scout MCP server — agentic ecosystem research for Stellar builders, callable from Claude.ai / ChatGPT / Cursor / Gemini and any MCP client.

Downloads

102

Readme

@stellar-light/scout-mcp

Stellar Scout, as an MCP server. Use it in Claude desktop, Cursor, ChatGPT, Gemini, Cline, Continue, Zed, or any Model Context Protocol client.

Exposes 14 tools that wrap stellarlight.xyz's public APIs — the same data that powers the stellar-scout skill, available as native callable functions for any MCP-compatible AI client.

npx @stellar-light/scout-mcp

What you can ask

Research, audits, and primary sources

"What audit findings have been reported for Blend's oracle?" Calls search_research with source=audit. Returns severity-tagged chunks citing Certora / OtterSec / Halborn audits with inline finding IDs.

"How does Stellar's developer count compare to other L1s?" Calls search_research with source=ec-developer-report. Returns Electric Capital data for 2019–2023.

Project discovery + idea validation

"Has anyone built a stablecoin off-ramp for Africa on Stellar?" Calls search_projects. Returns ranked projects with SCF status, hackathon placement, and a tiered match-mode signal so you know how confident the result is.

"What's the most crowded category on Stellar right now?" Calls get_clusters. Returns log-scaled crowdedness scores 1–10 across categories.

Hackathons + SCF prep

"Are there any open Stellar hackathons I can enter?" Calls get_hackathons with status=upcoming. Returns curated + DoraHacks events; falls back to BuildOnStellar / stellarlight / DoraHacks live channels when zero match.

"Compare Stellar Hacks: Agents vs the Chile Ideatón." Calls compare_hackathons. Returns side-by-side with delta notes (prize spread, hacker count, prize per winner).

SCF RFPs

"Is there an open SCF RFP for a real-time price API?" Calls get_rfps with status=open. Returns quarter-aware list with the active SCF round flagged.

Macro ecosystem

"What's Stellar's total SCF-distributed funding to date?" Calls analyze_ecosystem. Returns rollup analytics across hackathons + projects + funding rounds.


Install

Claude Desktop

Add to ~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "stellar-scout": {
      "command": "npx",
      "args": ["-y", "@stellar-light/scout-mcp"]
    }
  }
}

Restart Claude Desktop. The 14 Scout tools appear in the slash-menu.

Cursor

In your Cursor MCP config (Cursor Settings → MCP):

{
  "mcpServers": {
    "stellar-scout": {
      "command": "npx",
      "args": ["-y", "@stellar-light/scout-mcp"]
    }
  }
}

ChatGPT (custom GPT)

Use the official MCP connector for ChatGPT custom GPTs and point it at this package. Same npx command.

Continue, Cline, Zed, and others

Any client that follows the MCP spec works. Point them at npx -y @stellar-light/scout-mcp.

Self-hosted (optional)

git clone https://github.com/Stellar-Light/scout-mcp
cd scout-mcp
pnpm install
pnpm build
# point your client at:  node /path/to/scout-mcp/dist/index.js

Tools

All 14 tools wrap stellarlight.xyz public APIs. They're rate-limited but require no API key.

| Tool | What it does | |------|--------------| | search_research | Vector search over the 4,541-chunk Stellar research corpus (SEPs, SCF Handbook, dev docs, papers, lumenloop, audits, EC reports). Use source=audit for security, source=ec-developer-report for ecosystem stats. | | get_hackathons | List curated Stellar hackathons + live DoraHacks events. Status-scoped queries include fallback channels when empty. | | get_hackathon | One hackathon's full detail (submissions, winners, prize tracks, status funnel). | | compare_hackathons | Side-by-side comparison of 2–5 hackathons with delta notes. | | get_builders | Stellar Passport builder directory. Filter by location, skill, SCF tier. | | search_projects | Prior-art / competitor lookup across 741+ curated projects. Tiered match-mode (strict → loose → majority) surfaced in .meta.matchMode. | | get_rfps | Open + closed Stellar RFPs (SCF-funded sponsor briefs). Quarter-aware. | | list_skills | Catalog of skills.stellar.org's 7 official skills. | | get_skill | Full content of one SDF skill. | | get_leaderboard | Ecosystem dev activity (28-day active devs, commits, peer L1 comparison). | | get_status | Scout API health + freshness per data source + endpoint enumeration. | | submit_feedback | In-skill feedback loop. Lands in stellarlight's curator queue. | | get_clusters | Project topic clusters with log-scaled crowdedness scores 1–10. | | analyze_ecosystem | Cross-event analytics rollup (hackathons + projects + funding + status funnel). |


Configuration

Optional environment variables:

SCOUT_API_BASE       # API base URL (default: https://stellarlight.xyz)
SCOUT_USER_AGENT     # User-Agent sent on each call (default: stellar-scout-mcp/1.0.0)

Useful for local dev when running stellarlight against http://localhost:3000.


Companion: Stellar-Light/stellar-scout

This MCP server is for clients that speak MCP. If you're in Claude Code, Codex, OpenClaw, Cursor (skills mode), or any agent that loads SKILL.md files, install the SKILL.md instead:

npx skills add Stellar-Light/stellar-scout

Both surfaces hit the same backend.


License

MIT. Built as a public good for Stellar builders by stellarlight.xyz.


Links