polyvision

3
1
Source

Analyze Polymarket prediction market wallets — get copy trading scores (1-10), P&L, win rate, risk metrics (Sharpe ratio, Sortino ratio, max drawdown), red flags, position sizing, market category performance, recent performance (7d/30d/90d), and streak analysis. Connects via MCP server or REST API. Use when evaluating whether to copy trade a Polymarket trader, comparing multiple wallets side-by-side, screening for elite prediction market performers, checking if a wallet has bot-like trading patterns or hidden losses, or researching a trader's risk profile before following their positions. Free API key, no daily limits, 6-hour result caching.

Install

mkdir -p .claude/skills/polyvision && curl -L -o skill.zip "https://mcp.directory/api/skills/download/3403" && unzip -o skill.zip -d .claude/skills/polyvision && rm skill.zip

Installs to .claude/skills/polyvision

About this skill

PolyVision — Polymarket Wallet Analyzer

PolyVision analyzes Polymarket prediction market wallets and returns a comprehensive trading profile: copy trading score (1-10), P&L breakdown, win rate, risk metrics (Sharpe ratio, Sortino ratio, max drawdown), position sizing consistency, market category performance, recent performance windows (7d/30d/90d), streak analysis, and red flags. Use it to evaluate whether a trader is worth copy trading, compare multiple wallets, or screen for elite performers.

When to Use

  • User mentions a Polymarket wallet address (0x...)
  • User asks about copy trading, trader evaluation, or wallet scoring
  • User wants to compare prediction market traders or screen for elite performers
  • User asks about a trader's risk profile, red flags, or trading patterns

When NOT to Use

  • General crypto price queries (not Polymarket-specific)
  • Placing trades or executing orders (PolyVision is read-only analysis)
  • Non-Polymarket wallet lookups (Ethereum DeFi, NFTs, etc.)

Setup: MCP Server (Recommended)

Add to your MCP client configuration (e.g. claude_desktop_config.json, Cursor, Windsurf):

{
  "mcpServers": {
    "polyvision": {
      "type": "streamable-http",
      "url": "https://api.polyvisionx.com/mcp",
      "headers": {
        "Authorization": "Bearer ${POLYVISION_API_KEY}"
      }
    }
  }
}

Setup: Get an API Key

Register for a free API key (no daily limits):

curl -X POST https://api.polyvisionx.com/v1/auth/register \
  -H "Content-Type: application/json" \
  -d '{"email": "you@example.com", "name": "My App"}'

Response:

{
  "api_key": "pv_live_abc123...",
  "key_prefix": "pv_live_abc12345",
  "tier": "api"
}

Store the key — it is shown only once and cannot be retrieved later. Set it as an environment variable:

export POLYVISION_API_KEY="pv_live_abc123..."

MCP Tools Reference

analyze_wallet

Run a comprehensive Polymarket wallet analysis.

ParameterTypeRequiredDefaultDescription
wallet_addressstringYesEthereum address (42 chars, starts with 0x)
modestringNo"quick""quick" (~5s) or "full" (~30-60s with timing data)

Returns: Full analysis dict with P&L, win rate, risk metrics, categories, copy trading score (1-10), red flags, and usage info. Results are cached for 6 hours — cache hits are instant. See references/response-schemas.md for the complete field reference.

Timing: Quick mode ~5s, full mode ~30-60s. Cached responses are instant.

get_score

Get a compact copy-trading score for a wallet. Shares the same cache as analyze_wallet.

ParameterTypeRequiredDescription
wallet_addressstringYesEthereum address (42 chars, starts with 0x)

Returns: Score (1-10), recommendation, tier (green/yellow/orange/red), total P&L, win rate, trade count, Sharpe ratio, red flags, cache status, and usage info.

Timing: ~5s fresh, instant if cached.

check_quota

Check your usage statistics. Does not consume quota.

Parameters: None

Returns: { "used_today": <int>, "tier": "api" }

API/MCP access has no daily limits — usage is tracked for analytics only.

health

Check system health.

Parameters: None

Returns: { "status": "ok" } or { "status": "degraded" }

regenerate_key

Regenerate your API key. The old key is immediately invalidated.

Parameters: None

Returns: { "api_key": "pv_live_...", "key_prefix": "pv_live_...", "message": "..." }

The new key is shown only once. Update your configuration immediately.

deactivate_key

Permanently deactivate your API key. This is irreversible — use regenerate_key instead if you need a replacement.

Parameters: None

Returns: { "success": true, "message": "API key deactivated. All future requests with this key will be rejected." }

Score Tiers

TierScore RangeRecommendationMeaning
Green8.0 – 10.0Strong CopyConsistently profitable, good risk management, strong track record
Yellow6.0 – 7.9Moderate CopyDecent performance with some concerns, proceed with caution
Orange4.0 – 5.9Risky CopyMixed results, significant red flags, high risk
Red0.0 – 3.9Don't CopyPoor performance, major red flags, likely to lose money

Decision Table

User IntentToolModeWhy
"Should I copy this trader?"get_scoreQuick yes/no with score + red flags
"Deep dive on this wallet"analyze_walletfullComplete analysis with timing data
"Quick check on a wallet"analyze_walletquickFull analysis without activity timing
"Compare two traders"get_score x2Side-by-side scores for fast comparison
"What categories does this trader focus on?"analyze_walletquickCategory breakdown in analysis
"Is the system up?"healthSystem status check
"How many analyses have I run?"check_quotaUsage stats (no limits enforced)

Red Flag Reference

Red flags are returned as a list of strings. Here's what each one means:

Red FlagTriggerSeverity
Low win rateWin rate below 40%High
Large single lossSingle worst trade exceeds 50% of total P&LMedium
Overall unprofitableNet P&L is negativeHigh
Limited track recordFewer than 10 closed positionsMedium
InactiveNo trades in 30+ daysLow
BOT ALERTMedian trade duration under 5 minutesHigh
Very fast tradingMedian trade duration under 30 minutesMedium
LOSS HIDING70%+ of open positions underwater (5+ open)High
Open positions losing50%+ of open positions underwater (3+ open)Medium
No major red flags detectedNo concerning patterns foundNone

REST API (Alternative)

For agents that cannot use MCP, all tools are available as REST endpoints at https://api.polyvisionx.com. Most endpoints require Bearer token authentication (exceptions noted below).

Interactive docs and the OpenAPI spec are available at:

  • Swagger UI: https://api.polyvisionx.com/docs
  • OpenAPI JSON: https://api.polyvisionx.com/openapi.json
EndpointMethodDescription
POST /v1/auth/registerPOSTRegister and get an API key (no auth required)
GET /v1/auth/meGETGet current user info and usage stats
POST /v1/auth/regeneratePOSTRegenerate API key
POST /v1/auth/deactivatePOSTDeactivate API key
GET /v1/analyze/{wallet_address}?mode=quickGETFull wallet analysis
GET /v1/score/{wallet_address}GETCompact copy-trading score
GET /healthGETHealth check (no auth required)

Example: Analyze a wallet

curl -s https://api.polyvisionx.com/v1/analyze/0x1234...abcd?mode=quick \
  -H "Authorization: Bearer $POLYVISION_API_KEY" | jq .

Example: Get a score

curl -s https://api.polyvisionx.com/v1/score/0x1234...abcd \
  -H "Authorization: Bearer $POLYVISION_API_KEY" | jq .

Error Codes

CodeMeaningRecovery
400Invalid wallet address (must be 42-char hex starting with 0x)Fix the address format
401Invalid or inactive API keyCheck your POLYVISION_API_KEY or register a new one
409Email already registered (registration only)Use existing key or register with a different email
429Rate limitedWait and retry — Polymarket API has upstream limits
503System at capacity (all analysis slots in use)Retry in 30-60 seconds
504Analysis timed outRetry — the wallet may have extensive history

seedream-image-gen

openclaw

Generate images via Seedream API (doubao-seedream models). Synchronous generation.

2359

ffmpeg-cli

openclaw

Comprehensive video/audio processing with FFmpeg. Use for: (1) Video transcoding and format conversion, (2) Cutting and merging clips, (3) Audio extraction and manipulation, (4) Thumbnail and GIF generation, (5) Resolution scaling and quality adjustment, (6) Adding subtitles or watermarks, (7) Speed adjustment (slow/fast motion), (8) Color correction and filters.

6623

context-optimizer

openclaw

Advanced context management with auto-compaction and dynamic context optimization for DeepSeek's 64k context window. Features intelligent compaction (merging, summarizing, extracting), query-aware relevance scoring, and hierarchical memory system with context archive. Logs optimization events to chat.

3622

a-stock-analysis

openclaw

A股实时行情与分时量能分析。获取沪深股票实时价格、涨跌、成交量,分析分时量能分布(早盘/尾盘放量)、主力动向(抢筹/出货信号)、涨停封单。支持持仓管理和盈亏分析。Use when: (1) 查询A股实时行情, (2) 分析主力资金动向, (3) 查看分时成交量分布, (4) 管理股票持仓, (5) 分析持仓盈亏。

9121

himalaya

openclaw

CLI to manage emails via IMAP/SMTP. Use `himalaya` to list, read, write, reply, forward, search, and organize emails from the terminal. Supports multiple accounts and message composition with MML (MIME Meta Language).

7921

garmin-connect

openclaw

Syncs daily health and fitness data from Garmin Connect into markdown files. Provides sleep, activity, heart rate, stress, body battery, HRV, SpO2, and weight data.

7321

You might also like

flutter-development

aj-geddes

Build beautiful cross-platform mobile apps with Flutter and Dart. Covers widgets, state management with Provider/BLoC, navigation, API integration, and material design.

643969

drawio-diagrams-enhanced

jgtolentino

Create professional draw.io (diagrams.net) diagrams in XML format (.drawio files) with integrated PMP/PMBOK methodologies, extensive visual asset libraries, and industry-standard professional templates. Use this skill when users ask to create flowcharts, swimlane diagrams, cross-functional flowcharts, org charts, network diagrams, UML diagrams, BPMN, project management diagrams (WBS, Gantt, PERT, RACI), risk matrices, stakeholder maps, or any other visual diagram in draw.io format. This skill includes access to custom shape libraries for icons, clipart, and professional symbols.

591705

ui-ux-pro-max

nextlevelbuilder

"UI/UX design intelligence. 50 styles, 21 palettes, 50 font pairings, 20 charts, 8 stacks (React, Next.js, Vue, Svelte, SwiftUI, React Native, Flutter, Tailwind). Actions: plan, build, create, design, implement, review, fix, improve, optimize, enhance, refactor, check UI/UX code. Projects: website, landing page, dashboard, admin panel, e-commerce, SaaS, portfolio, blog, mobile app, .html, .tsx, .vue, .svelte. Elements: button, modal, navbar, sidebar, card, table, form, chart. Styles: glassmorphism, claymorphism, minimalism, brutalism, neumorphism, bento grid, dark mode, responsive, skeuomorphism, flat design. Topics: color palette, accessibility, animation, layout, typography, font pairing, spacing, hover, shadow, gradient."

318398

godot

bfollington

This skill should be used when working on Godot Engine projects. It provides specialized knowledge of Godot's file formats (.gd, .tscn, .tres), architecture patterns (component-based, signal-driven, resource-based), common pitfalls, validation tools, code templates, and CLI workflows. The `godot` command is available for running the game, validating scripts, importing resources, and exporting builds. Use this skill for tasks involving Godot game development, debugging scene/resource files, implementing game systems, or creating new Godot components.

339397

nano-banana-pro

garg-aayush

Generate and edit images using Google's Nano Banana Pro (Gemini 3 Pro Image) API. Use when the user asks to generate, create, edit, modify, change, alter, or update images. Also use when user references an existing image file and asks to modify it in any way (e.g., "modify this image", "change the background", "replace X with Y"). Supports both text-to-image generation and image-to-image editing with configurable resolution (1K default, 2K, or 4K for high resolution). DO NOT read the image file first - use this skill directly with the --input-image parameter.

451339

fastapi-templates

wshobson

Create production-ready FastAPI projects with async patterns, dependency injection, and comprehensive error handling. Use when building new FastAPI applications or setting up backend API projects.

304231

Stay ahead of the MCP ecosystem

Get weekly updates on new skills and servers.