📈 Add trendspyg skill

This commit is contained in:
Alone
2026-07-15 15:00:54 +08:00
parent 34218aa9ca
commit f32c2c710e
2 changed files with 33 additions and 0 deletions
+5
View File
@@ -55,6 +55,11 @@ Deploy HTML content to EdgeOne Pages, return the public URL. No login required,
---
## 📈 trendspyg ([trendspyg](./skills/trendspyg/SKILL.md)) ![Require](https://img.shields.io/badge/npx,uvx-+?label=bin)
Free Google Trends data: real-time trending topics and keyword analysis over time (interest over time, related queries, interest by region).
---
## ₿ Crypto Report ([crypto-report](./skills/crypto-report/SKILL.md)) ![Require](https://img.shields.io/badge/curl,jq-+?label=bin)
Get cryptocurrency market data. Get Binance AI analysis report. Get blockchain news updates.
+28
View File
@@ -0,0 +1,28 @@
---
name: trendspyg
description: Free Google Trends data - real-time trending topics and keyword analysis over time (interest over time, related queries, interest by region).
---
# trendspyg
Free, open-source Python library for Google Trends data: trending now plus keyword interest over time, related queries, and interest by region. A maintained pytrends alternative with CLI and API.
```bash
export UVX_TRENDSPYG='uvx --from "trendspyg[mcp]" trendspyg-mcp'
```
## List available tools
```bash
alias trendspyg-list="npx -y mcporter list --stdio '$UVX_TRENDSPYG'"
trendspyg-list --all-parameters
# Get the schema of the specified tool
trendspyg-list --json | jq '.tools[] | select(.name == "<tool_name>")'
```
## Call specified tool
```bash
alias trendspyg-call="npx -y mcporter call --stdio '$UVX_TRENDSPYG'"
trendspyg-call --tool <tool_name> --args '{"key":"val"}'
```
## About `mcporter`
To improve compatibility, use `npx -y mcporter` instead of `mcporter` when executing commands.