Watchlist Ranking
Ranks watchlist coins on a simple 0–100 attractiveness score composed from sentiment, signal, and trend.
// The Problem
What this recipe solves
Deciding which coin to look at first across a watchlist is a daily time sink. This recipe computes a composite score from three Guavy signals and ranks your list so you start with the strongest setup.
// The Prompt
Copy, paste, run
Paste this into any MCP-compatible agent (Claude, ChatGPT, Cursor, etc.) after connecting Guavy, then hit run.
For each watchlist symbol (BTC, ETH, SOL, AVAX, LINK), compute:
sentiment_score = ((positive − negative) / (positive + negative + 1) + 1) / 2
action_score = 1 if current_action == 'Buy' else 0
trend_score = {'Strong':1, 'Solid':0.7, 'Moderate':0.4, 'Weak':0}.get(strength, 0)
score = 40 × sentiment_score + 30 × action_score + 30 × trend_score
Rank descending and return a table: symbol | score | top driver.
// Guavy Tools in Play
3 tools, one prompt
This recipe wires together 3 endpoints from the Guavy MCP server. Your agent picks the right ones and composes the result. Every number is cited back to the tool it came from.
// Keep Exploring
Related recipes
Same API key, different job-to-be-done.
// Get started
Run this recipe in under 2 minutes
Connect Guavy to Claude, ChatGPT, Cursor, or any MCP-compatible agent and paste the prompt. Free sandbox forever.