Skip to main content

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

Project description

ayga-mcp-client

MCP server for Redis API with 40 parsers across 9 categories.

mcp-name: io.github.ozand/ayga-mcp-client

✨ What's New in v1.4.0

  • 40 parsers total (was 39): Added Link Extractor for domain scraping workflows
  • +1 parser: Link Extractor with multi-level crawling and filtering
  • Content (3): Article extractor, Text extractor, Link extractor (NEW)
  • Link Extractor features:
    • Multi-level crawling (depth 1-5)
    • Internal/external link filtering
    • Automatic deduplication
    • 3 presets: default, deep_crawl, all_links
  • Agent Orchestration: Optimized for AI agents to orchestrate domain content scraping
  • Social media (10): Instagram (6), TikTok (1), Telegram, Reddit (3)
  • Analytics (1): Google Trends for keyword research
  • Visual (1): Pinterest search for images
  • Search Engines (8): Google, Yandex, Bing, DuckDuckGo, Baidu, Yahoo, Rambler, You.com
  • FreeAI (6): Perplexity, GoogleAI, ChatGPT, Kimi, DeepAI, Copilot
  • YouTube (6): Video metadata, search, suggestions, channel info, comments
  • Translation (4): Google, DeepL, Bing, Yandex with language control
  • Net (1): HTTP fetcher

Quick Start

pip install ayga-mcp-client

Claude Desktop

Add to ~/.config/Claude/claude_desktop_config.json (Linux/macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows):

{
  "mcpServers": {
    "ayga": {
      "command": "python",
      "args": ["-m", "ayga_mcp_client"],
      "env": {
        "REDIS_API_KEY": "YOUR_API_KEY"
      }
    }
  }
}

VS Code Copilot

Add to your MCP config file (%APPDATA%\Code\User\mcp.json on Windows):

{
  "servers": {
    "ayga": {
      "type": "stdio",
      "command": "python",
      "args": ["-m", "ayga_mcp_client"],
      "env": {
        "REDIS_API_KEY": "YOUR_API_KEY"
      }
    }
  }
}

Documentation

  • EXAMPLES.md - Detailed examples with request/response formats for all tools
  • DEVELOPMENT.md - Technical architecture and development guide
  • CHANGELOG.md - Version history and release notes

Available Tools

FreeAI Parsers (6)

  • search_perplexity - AI-powered search with sources
  • search_googleai - Google AI search with structured sources
  • search_chatgpt - ChatGPT with web search
  • search_kimi - Kimi AI for translation and education
  • search_deepai - DeepAI multi-style chat
  • search_copilot - Microsoft Copilot search

YouTube Parsers (6)

  • parse_youtube_video - Video metadata, subtitles, comments
  • search_youtube_search - Search videos by keywords
  • get_youtube_suggest - Keyword suggestions/autocomplete
  • get_youtube_channel_videos - List channel videos
  • get_youtube_channel_about - Channel info from About page
  • parse_youtube_comments - Parse video comments with threading

Social Media Parsers (10)

  • scrape_telegram_group - Scrape public group messages
  • search_reddit_posts - Search Reddit posts with sorting
  • get_reddit_post_info - Get post with comments and details
  • search_reddit_comments - Search Reddit comments
  • parse_instagram_profile - Profile data, posts, followers (requires auth cookie)
  • parse_instagram_post - Post with likes, comments, caption
  • parse_instagram_tag - Posts by hashtag (requires auth cookie)
  • parse_instagram_geo - Posts by location with coordinates
  • search_instagram_search - Search profiles, hashtags, locations
  • parse_tiktok_profile - TikTok profile data, videos, followers

Translation Services (4)

  • translate_google_translate - Google Translate (100+ languages)
  • translate_deepl_translate - DeepL high-quality translation
  • translate_bing_translate - Microsoft Bing Translator
  • translate_yandex_translate - Yandex Translate with captcha bypass

Search Engines (8)

  • search_google_search - Google search with operators support
  • search_yandex_search - Yandex search (Russian search engine)
  • search_bing_search - Bing search with operators support
  • search_duckduckgo_search - Privacy-focused DuckDuckGo search
  • search_baidu_search - Chinese search engine Baidu
  • search_yahoo_search - Yahoo search results
  • search_rambler_search - Russian search engine Rambler
  • search_you_search - You.com AI-powered search

Content Parsers (3)

  • parse_article_extractor - Extract articles with Mozilla Readability algorithm
  • parse_text_extractor - Parse text blocks with automatic HTML cleaning (2000 queries/min)
  • extract_link_extractor - Extract all links from HTML pages with filtering and deduplication ✨ NEW

Analytics Parsers (1)

  • get_google_trends - Parse trending keywords, interest data, regional trends

Visual Content Parsers (1)

  • search_pinterest_search - Pinterest images, titles, descriptions (4000+ queries/min)

Net Tools (1)

  • fetch_http - Fetch raw URL content

Net Tools (1)

  • fetch_http - Fetch raw URL content

Metadata Tools

  • list_parsers - List all available parsers
  • get_parser_info - Get parser details
  • health_check - API health status

Authentication

Get your API key from https://redis.ayga.tech or contact support@ayga.tech

The client automatically exchanges your API key for a JWT token on first request.

Example Usage

Once configured, use tools in Claude Desktop or VS Code Copilot:

# FreeAI search
@ayga search_perplexity query="latest AI trends 2025" timeout=90
@ayga search_chatgpt query="explain quantum computing" timeout=60

# YouTube parsing
@ayga parse_youtube_video query="https://youtube.com/watch?v=..." preset="default"
@ayga search_youtube_search query="python tutorial" pages_count=2

# Instagram/TikTok (Social Media)
@ayga parse_instagram_profile query="username" timeout=120
@ayga parse_instagram_tag query="travel" timeout=120
@ayga parse_tiktok_profile query="@username"

# Translation with language control
@ayga translate_google_translate query="Hello world" from_language="en" to_language="ru"
@ayga translate_deepl_translate query="Machine learning" to_language="de"

# Content extraction
@ayga parse_article_extractor query="https://example.com/article"
@ayga parse_text_extractor query="https://example.com/page"

# Analytics and trends
@ayga get_google_trends query="artificial intelligence" timeout=90
@ayga get_google_trends query="AI,machine learning,deep learning"

# Visual content
@ayga search_pinterest_search query="modern interior design" timeout=60

# Social media
@ayga parse_instagram_profile query="username" timeout=120
@ayga search_reddit_posts query="python" pages_count=1 sort="top"

# Search engines
@ayga search_google_search query="site:github.com python parser"
@ayga search_yandex_search query="программирование python"

# Metadata
@ayga list_parsers
@ayga get_parser_info parser_id="youtube_video"

Environment Variables

Development

git clone https://github.com/ozand/ayga-mcp-client.git
cd ayga-mcp-client
pip install -e ".[dev]"

# Run tests
pytest

# Run locally
python -m ayga_mcp_client --username USER --password PASS

License

MIT License - see LICENSE

Links

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

ayga_mcp_client-1.4.1.tar.gz (26.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

ayga_mcp_client-1.4.1-py3-none-any.whl (20.5 kB view details)

Uploaded Python 3

File details

Details for the file ayga_mcp_client-1.4.1.tar.gz.

File metadata

  • Download URL: ayga_mcp_client-1.4.1.tar.gz
  • Upload date:
  • Size: 26.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.11

File hashes

Hashes for ayga_mcp_client-1.4.1.tar.gz
Algorithm Hash digest
SHA256 94c543423c03d0c77175955ab249a80cb3a421dc202f4084d6390e099605313a
MD5 a4f5b58818cc4305b5c6b609e56d5178
BLAKE2b-256 0900177521c22dba5dc44b56b148906ba90a78ccba4f4e93b95fcc2f5006a47e

See more details on using hashes here.

File details

Details for the file ayga_mcp_client-1.4.1-py3-none-any.whl.

File metadata

File hashes

Hashes for ayga_mcp_client-1.4.1-py3-none-any.whl
Algorithm Hash digest
SHA256 af2b4a068adb71b397e189f5fbe05ccbf61c4c588bcf7f0ca9d587ff1a1aef22
MD5 49c8ea52ba4d0c4912a271b5042ac557
BLAKE2b-256 9f26379f09a8f60875cf8b6a6427fa9a81d838685c51dfb2dc103cccf5a27117

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page