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

@truffle-ai/product-name-scout-mcp

v1.0.2

Published

MCP server for product name research and searchability analysis

Downloads

11

Readme

Name Scout MCP Server

A comprehensive MCP server for brand name research and searchability analysis. Designed to help evaluate potential product/brand names through multiple signals including search competition, developer platform conflicts, autocomplete behavior, and overall "ownability" assessment.

Features

  • Search Engine Analysis: Check SERP competition and result counts across Google, DuckDuckGo, and Brave
  • Autocomplete Research: Analyze search suggestion patterns to identify spelling and recognition issues
  • Developer Platform Conflicts: Check for existing projects on GitHub, npm, and PyPI
  • Comprehensive Scoring: Aggregate multiple signals into actionable brand viability scores

Tools

check_brand_serp

Analyze search engine results for exact brand name matches.

Parameters:

  • name (string): The brand/product name to search for
  • engine (optional): Search engine - "google" | "ddg" | "brave" (default: "google")
  • limit (optional): Maximum results to return (default: 10, max: 50)

Returns:

{
  "resultCountText": "About 3,210 results (0.32 seconds)",
  "didYouMean": "zenola labs",
  "results": [
    {"title":"...", "url":"...", "snippet":"..."},
    ...
  ]
}

get_autocomplete

Get autocomplete suggestions from search engines.

Parameters:

  • name (string): The name to get autocomplete suggestions for

Returns:

{
  "google": ["zenola", "zenola ai"],
  "ddg": ["zenola", "zenola meaning"]
}

check_dev_collisions

Check for existing projects on developer platforms.

Parameters:

  • name (string): The name to check for collisions
  • platforms (optional): Array of platforms - ["github", "npm", "pypi"] (default: all)

Returns:

{
  "github": {"count": 2, "top": [{"name":"...", "url":"..."}]},
  "npm": {"count": 0, "top": []},
  "pypi": {"count": 1, "top": [{"name":"...", "url":"..."}]}
}

score_name

Comprehensive scoring across multiple brand viability factors.

Parameters:

  • name (string): The name to score
  • weights (optional): Custom scoring weights for different factors
  • rawSignals (optional): Pre-computed signals to skip network calls

Returns:

{
  "score": 82,
  "breakdown": {"serp_empty": 24, "dev_collisions": 18, ...},
  "notes": ["No serious competitors", "Clean on developer platforms"],
  "signals": {...}
}

Installation

Using npm

npm install @truffle-ai/name-scout-mcp
npx truffle-ai-name-scout-mcp

Using uvx

uvx @truffle-ai/name-scout-mcp

From source

git clone https://github.com/truffle-ai/mcp-servers.git
cd mcp-servers/src/name-scout
npm install
npm run build
npm start

Configuration with MCP Clients

Claude Desktop

Add to your claude_desktop_config.json:

{
  "mcpServers": {
    "name-scout": {
      "command": "uvx",
      "args": ["@truffle-ai/name-scout-mcp"]
    }
  }
}

Saiki

Add to your agent configuration:

mcpServers:
  name-scout:
    type: stdio
    command: uvx
    args:
      - "@truffle-ai/name-scout-mcp"

Usage Examples

Basic SERP Analysis

User: Check search competition for "ZenMind"
Assistant: [Uses check_brand_serp with name="ZenMind"]

Comprehensive Name Evaluation

User: Evaluate "CodeFlow" as a product name
Assistant: [Uses check_brand_serp, get_autocomplete, check_dev_collisions, then score_name for complete analysis]

Developer Platform Check

User: Are there any GitHub/npm conflicts for "reactflow"?
Assistant: [Uses check_dev_collisions with name="reactflow" and platforms=["github","npm"]]

Scoring Methodology

The score_name tool uses weighted scoring across multiple factors:

  • SERP Emptiness (3x): Lower competition = higher score
  • Spellability (2x): Easy to spell and remember names score higher
  • Autocomplete (2x): Clean autocomplete behavior scores higher
  • Dev Collisions (2x): Fewer conflicts on developer platforms = higher score
  • Domains (3x): Domain availability (requires domain-checker MCP)
  • Trademark (2x): Trademark conflict assessment
  • International (1x): International meaning and pronunciation

Rate Limiting

The server implements polite rate limiting:

  • 600ms delay between SERP requests
  • 700ms delay between developer platform checks
  • 300ms delay between autocomplete requests

Dependencies

  • @modelcontextprotocol/sdk - MCP framework
  • cheerio - HTML parsing
  • undici - HTTP requests
  • zod - Schema validation

License

MIT - See LICENSE for details.