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

v3.3.0

Published

MCP client with 6 consolidated AI tools - stateless X-API-Key auth, no JWT exchange needed

Readme

Ayga MCP Client (Node.js) v3.3.0

Paid Service: This is a paid Ayga service. Get your API key at @aygamcp_bot.

MCP client with 6 consolidated AI tools for Claude Desktop and VS Code Copilot.

Quick Start

  1. Get API key: @aygamcp_bot/newkey
  2. Configure your IDE (see below)
  3. Use tools: ask_ai, search_web, get_video, get_social, translate, extract

Available Tools

| Tool | Description | Default Engine | |------|-------------|----------------| | ask_ai | Query AI models | perplexity | | search_web | Web search and trends | google_search | | get_video | YouTube content | youtube_search | | get_social | Social media data | instagram_profile | | translate | Text translation | google_translate | | extract | Web page extraction | text_extractor | | ayga_check_limits | Check your rate limits | - | | list_parsers | List all available parsers | - |

Configuration

VS Code Copilot

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

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"
      }
    }
  }
}

Usage

# Basic usage (default engine)
ask_ai query="What is quantum computing?"
search_web query="latest AI news"
get_video query="Python tutorials"

# With specific engine
ask_ai query="Explain transformers" engine="chatgpt"
search_web query="weather" engine="duckduckgo_search"

# Check your rate limits
ayga_check_limits _placeholder=true

Environment Variables

| Variable | Required | Default | |----------|----------|---------| | REDIS_API_KEY | Yes | - | | API_URL | No | https://redis.ayga.tech |

Architecture

+-------------------------------------+
|     VS Code / Claude Desktop        |
+-----------------+-------------------+
                  | MCP stdio
+-----------------v-------------------+
|  @ayga/mcp-client (Node.js)         |
|  - 6 consolidated tools             |
|  - 40+ parser engines               |
+-----------------+-------------------+
                  | HTTPS
+-----------------v-------------------+
|  Ayga API (redis.ayga.tech)         |
+-----------------+-------------------+
                  |
+-----------------v-------------------+
|           Parser Backend            |
+-------------------------------------+

Available Engines

| Tool | Engines | |------|---------| | ask_ai | perplexity, googleai, chatgpt, kimi, deepai, copilot | | search_web | google_search, bing_search, duckduckgo_search, yandex_search, baidu_search, yahoo_search, rambler_search, you_search, google_trends | | get_video | youtube_search, youtube_video, youtube_suggest, youtube_comments, youtube_channel_videos, youtube_channel_about | | get_social | instagram_profile, instagram_post, instagram_tag, instagram_geo, instagram_search, tiktok_profile, reddit_posts, reddit_post_info, reddit_comments, telegram_group, pinterest_search | | translate | google_translate, deepl_translate, bing_translate, yandex_translate | | extract | text_extractor, article_extractor, link_extractor |

Support

License

MIT