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

ayga-mcp-client

v2.0.0

Published

MCP client for Redis API with 40 AI parsers across 9 categories (Perplexity, ChatGPT, Instagram, TikTok, Google Trends, Pinterest, Link Extractor, YouTube, Translation, Search Engines)

Readme

Ayga MCP Client (Node.js)

Modern, lightweight MCP client for Redis API with 40 AI parsers across 9 categories.

🚀 Quick Start

Install via npx (recommended)

npx @ayga/mcp-client

VS Code Copilot Configuration

Add to %APPDATA%\Code\User\mcp.json:

{
  "inputs": [
    {
      "id": "REDIS_API_KEY",
      "type": "promptString",
      "description": "ayga-mcp-client Redis API key",
      "password": true
    }
  ],
  "servers": {
    "ayga": {
      "type": "stdio",
      "command": "npx",
      "args": ["@ayga/mcp-client@latest"],
      "env": {
        "REDIS_API_KEY": "${input:REDIS_API_KEY}"
      }
    }
  }
}

Claude Desktop Configuration

Add to %APPDATA%\Claude\claude_desktop_config.json:

{
  "mcpServers": {
    "ayga": {
      "command": "npx",
      "args": ["@ayga/mcp-client@latest"],
      "env": {
        "REDIS_API_KEY": "your-api-key-here"
      }
    }
  }
}

📦 Available Parsers (40 total)

AI Chat (8)

  • search_perplexity - Perplexity AI with sources
  • search_chatgpt - ChatGPT with web search
  • search_claude - Anthropic Claude
  • search_gemini - Google Gemini
  • search_copilot - Microsoft Copilot
  • search_grok - xAI Grok
  • search_deepseek - DeepSeek AI
  • search_deepai - DeepAI

Search Engines (8)

  • search_google_search - Google Search
  • search_bing_search - Bing Search
  • search_duckduckgo - DuckDuckGo
  • search_yahoo_search - Yahoo Search
  • search_yandex_search - Yandex Search
  • search_baidu_search - Baidu Search
  • search_rambler_search - Rambler Search
  • search_you_search - You.com

Instagram (4)

  • search_instagram_profile - User profiles
  • search_instagram_post - Individual posts
  • search_instagram_tag - Hashtag pages
  • search_instagram_geo - Location pages

TikTok (1)

  • search_tiktok_profile - User profiles and videos

YouTube (5)

  • search_youtube_search - Search videos
  • search_youtube_video - Video details
  • search_youtube_comments - Video comments
  • search_youtube_channel_videos - Channel videos
  • search_youtube_channel_about - Channel info

Google Trends (1)

  • search_google_trends - Trends data

Pinterest (1)

  • search_pinterest_search - Search pins

Reddit (2)

  • search_reddit_posts - Search posts
  • search_reddit_comments - Post comments

Translation (3)

  • search_google_translate - Google Translate
  • search_bing_translate - Bing Translator
  • search_yandex_translate - Yandex Translator

HTML Content (3)

  • search_link_extractor - Extract links
  • search_article_extractor - Extract articles (Mozilla Readability)
  • search_text_extractor - Extract text content

💡 Usage Examples

In Claude Desktop/VS Code

@ayga list_parsers
@ayga search_perplexity query="What is MCP protocol?"
@ayga search_google_trends query="AI trends 2026"
@ayga search_youtube_search query="Python tutorials" timeout=90
@ayga search_google_translate query="Hello world"

Command Line

# Set API key
export REDIS_API_KEY="your-api-key"

# Run server
npx @ayga/mcp-client

🏗️ Architecture

┌─────────────────────────────────────┐
│     VS Code / Claude Desktop        │
└─────────────┬───────────────────────┘
              │ MCP stdio
┌─────────────▼───────────────────────┐
│  @ayga/mcp-client (Node.js)         │
│  - 40 parsers                       │
│  - MCP protocol                     │
│  - JWT authentication               │
└─────────────┬───────────────────────┘
              │ HTTPS REST API
┌─────────────▼───────────────────────┐
│  redis_wrapper (Python/FastAPI)     │
│  https://redis.ayga.tech            │
└─────────────┬───────────────────────┘
              │ Redis Queue
┌─────────────▼───────────────────────┐
│         A-Parser (Windows)          │
└─────────────────────────────────────┘

🔑 Getting API Key

  1. Visit https://redis.ayga.tech
  2. Sign up or log in
  3. Generate API key
  4. Use in configuration

🆚 vs Python Version

| Feature | Node.js (2.0.0) | Python (1.4.1) | | ---------------- | ---------------------- | ---------------------------- | | Installation | npx @ayga/mcp-client | uvx ayga-mcp-client==1.4.1 | | Startup | ~50-100ms | ~716ms | | Dependencies | MCP SDK only | mcp, httpx, pydantic | | Size | ~500 lines | ~1200 lines | | Runtime | Node.js 18+ | Python 3.11+ | | Parsers | ✅ All 40 | ✅ All 40 |

📄 License

MIT

🔗 Links

  • API Backend: https://redis.ayga.tech
  • Python Version: https://pypi.org/project/ayga-mcp-client/
  • GitHub: https://github.com/ozand/ayga-mcp-nodejs
  • Issues: https://github.com/ozand/ayga-mcp-nodejs/issues