Cursor
get_top_ranked
Return the top-N stocks or ETFs ranked by Danelfin AI Score in a given market. Results are pre-sorted highest AI score first (server-side). Use when the user asks to rank or list the best ideas by AI conviction. Examples: "top S&P 500 stocks by AI score", "best European stock ideas this week", "rank US ETFs by Danelfin score", "highest conviction US names right now".
Remote danelfin/ai-scores
Remote (network-hosted)
Other tools also called get_top_ranked?
See providers with this name
Input Schema
{
"type": "object",
"properties": {
"n": {
"type": "integer",
"default": 10,
"description": "Number of top results to return (1–100)"
},
"market": {
"type": "string",
"description": "Market universe. One of: 'us_stocks' (S&P 500 + Nasdaq), 'us_etfs' (US ETFs), 'stoxx600' (major European exchanges)"
},
"min_score": {
"type": "integer",
"default": 1,
"description": "Minimum AI Score threshold (1–10). Only tickers at or above this score are returned"
}
}
}