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

@naridon/mcp-server

v0.5.0

Published

MCP server exposing Naridon AI visibility data to AI assistants

Readme

@naridon/mcp-server

MCP server for Naridon — manage your AI visibility, optimization, CMS, and content from any MCP-compatible AI assistant.

Quick Setup

Claude Code

Add to your project's .mcp.json or ~/.claude/settings.json:

{
  "mcpServers": {
    "naridon": {
      "command": "npx",
      "args": ["-y", "@naridon/mcp-server"],
      "env": {
        "NARIDON_API_KEY": "nrdn_your_api_key_here"
      }
    }
  }
}

Cursor / Windsurf

Add to your MCP config:

{
  "naridon": {
    "command": "npx",
    "args": ["-y", "@naridon/mcp-server"],
    "env": {
      "NARIDON_API_KEY": "nrdn_your_api_key_here"
    }
  }
}

Getting your API Key

  1. Log in to Naridon
  2. Go to Settings > API Keys
  3. Click Generate API Key
  4. Copy the key (starts with nrdn_)

Environment Variables

| Variable | Required | Description | |----------|----------|-------------| | NARIDON_API_KEY | Yes | Your per-shop API key | | NARIDON_API_URL | No | API base URL (default: https://app.naridon.com/api/v1) |

For staging, set:

NARIDON_API_URL=https://api-staging.naridon.com/api/v1

Available Tools

Monitoring

  • get_dashboard — Full monitoring dashboard overview
  • get_prompt_rankings — Visibility rankings for tracked prompts
  • get_sentiment — Sentiment analysis data
  • get_citations — Citation data for your brand
  • get_mentions — Social mentions and brand references
  • get_platforms — Platform visibility rankings
  • get_content_gaps — Content gap analysis
  • get_competitors — Competitor analysis
  • discover_prompts — Discover new prompts to track
  • calculate_aeo_score — Optimization readiness score

Optimization

  • get_store_stats — Optimization statistics
  • get_fix_suggestions — Pending fix suggestions
  • apply_fix — Apply a fix to the store
  • approve_fix — Approve a drafted fix
  • revert_fix — Revert an applied fix
  • trigger_scan — Trigger an optimization scan

Content AI

  • generate_content — Generate optimized content
  • list_content — List generated content
  • get_content — Get content details
  • publish_content — Publish content to your platform

CMS

  • cms_create_page — Create a page or blog post
  • cms_update_page — Update a page
  • cms_publish_page — Publish a page
  • cms_list_pages — List all pages
  • cms_list_media — List uploaded media
  • cms_export — Export all pages as JSON

Other

  • get_settings / update_settings — Shop settings
  • get_credit_balance / get_credit_usage — Credit balance
  • send_chat_message — AI assistant chat
  • get_brand_voice / update_brand_voice — Brand voice
  • list_reports / generate_report — Reports

Example Usage

Once connected, ask your AI assistant:

  • "What's my current visibility score?"
  • "Show me pending optimization fixes"
  • "Create a blog post about our new product launch"
  • "What content gaps do I have compared to competitors?"
  • "Generate a product description optimized for AI search"
  • "Export all my CMS pages"

License

MIT