{
  "markdown": "# CoinPaprika Claude Marketplace\n\nOfficial Claude Code plugins for **CoinPaprika** and **DexPaprika**: crypto market data and DeFi analytics, no API key needed to start.\n\n- **CoinPaprika**: 12,000+ cryptocurrencies, 350+ exchanges, 31 MCP tools\n- **DexPaprika**: 36 blockchains, 36M+ pools, 17 MCP tools\n\nBoth APIs have a free tier that works without an API key. Paid plans raise the quotas; see the rate limits below.\n\n## Quick Start\n\n### Option 1: Auto-Install (Recommended)\n```bash\ngit clone https://github.com/coinpaprika/claude-marketplace.git\ncd claude-marketplace\n# Open in Claude Code, plugins install automatically via .claude/settings.json\n```\n\n### Option 2: Plugin Marketplace\n```bash\n# In Claude Code\n/plugin marketplace add coinpaprika/claude-marketplace\n/plugin install coinpaprika@coinpaprika-plugins\n/plugin install dexpaprika@coinpaprika-plugins\n```\n\n## What You Get\n\n### CoinPaprika Plugin\n\n**31 MCP tools** for centralized exchange market data:\n- Prices, tickers, market caps for 12,000+ cryptocurrencies\n- OHLCV candlestick data (historical, latest, today)\n- Exchange directory across 350+ exchanges, including per-coin exchange listings and trading pairs\n- Contract address lookups across chains\n- Tags, categories, search, price converter\n- People profiles, ID mappings, changelog\n\n**1 agent** (`@crypto-analyst`): Market analysis, price trends, risk assessment\n\n**1 skill** (`crypto-market-search`): Search, discover, and analyze coins\n\n**Free tier**: 20,000 calls/month, no API key needed. Pro tier via `api-pro.coinpaprika.com`.\n\n### DexPaprika Plugin\n\n**17 MCP tools** for decentralized exchange data:\n- Token prices and details across 36 blockchains\n- Liquidity pool discovery, filtering, and details\n- OHLCV charts for any pool\n- Pool transactions and trading activity\n- Batch price lookups (up to 10 tokens)\n- Cross-chain search for tokens, pools, and DEXes\n\n**1 agent** (`@defi-data-analyst`): DeFi security analysis, honeypot detection, scam identification\n\n**4 skills**: Token Security Analyzer, Technical Analyzer, Batch Token Price Lookup, Trending Pools Analyzer\n\n**No API key needed to start**: keyless access at 30 requests/minute, with data delayed up to 15 seconds. A free key raises the monthly quota. Pro is $99/month at 300/minute with real-time data. Monthly quotas change, so read the current figures from [pricing](https://dexpaprika.com/api/pricing).\n\n## Updating\n\nInstalled plugins are version-pinned snapshots. Claude Code copies plugin files at install time and only re-copies them when the plugin's version string changes. Pulling this repo or pushing new commits does nothing for users who already installed a plugin.\n\n**For contributors**: every change to plugin content (manifests, READMEs, agents, skills) must ship with a version bump in two places, or installed users never receive it:\n\n1. `plugins/<plugin>/.claude-plugin/plugin.json` (`version`)\n2. `.claude-plugin/marketplace.json` (the matching plugin entry's `version`)\n\n**For users**: marketplace clones are not auto-fetched either, so refresh in two steps:\n\n```bash\n# In Claude Code\n/plugin marketplace update coinpaprika-plugins\n/plugin update coinpaprika@coinpaprika-plugins\n/plugin update dexpaprika@coinpaprika-plugins\n```\n\nThen restart Claude Code to apply.\n\n## Quick Test\n\n```\n# CoinPaprika\nUsing CoinPaprika, show me Bitcoin price and market cap\n\n# DexPaprika\nUsing DexPaprika, show top 10 pools on Base by 24h volume\n\n# Security analysis (auto-activates)\nIs this token safe? 0x1234567890abcdef on Ethereum\n```\n\n## Repository Structure\n\n```\nclaude-marketplace/\n├── .claude/\n│   └── settings.json                       # Auto-install config\n├── .claude-plugin/\n│   └── marketplace.json                    # Marketplace definition (2 plugins)\n├── plugins/\n│   ├── coinpaprika-claude-plugin/\n│   │   ├── .claude-plugin/\n│   │   │   └── plugin.json                 # Plugin manifest (31 MCP tools)\n│   │   ├── .mcp-hosted.json                # MCP server connection\n│   │   ├── agents/\n│   │   │   └── crypto-analyst.md           # Market analyst agent\n│   │   ├── skills/\n│   │   │   └── crypto-market-search/\n│   │   │       └── SKILL.md                # Coin search & analysis skill\n│   │   └── README.md\n│   └── dexpaprika-claude-plugin/\n│       ├── .claude-plugin/\n│       │   └── plugin.json                 # Plugin manifest (17 MCP tools)\n│       ├── agents/\n│       │   └── defi-data-analyst.md        # DeFi security agent\n│       ├── skills/\n│       │   ├── token-security-analyzer/\n│       │   │   └── SKILL.md                # Honeypot/rug pull detection\n│       │   ├── technical-analyzer/\n│       │   │   └── SKILL.md                # OHLCV chart analysis\n│       │   ├── batch-token-price-lookup/\n│       │   │   └── SKILL.md                # Multi-token price checks\n│       │   └── trending-pools-analyzer/\n│       │       └── SKILL.md                # Top pools by volume\n│       └── README.md\n├── CHANGELOG.md\n├── LICENSE\n└── README.md\n```\n\n## Verification\n\n```bash\n# Check MCP servers are connected\nclaude mcp list\n# Should show: coinpaprika (SSE) and dexpaprika (streamable HTTP)\n\n# Test CoinPaprika\nUsing CoinPaprika, what's the price of Ethereum?\n\n# Test DexPaprika\nUsing DexPaprika, show me trending pools on Solana\n```\n\n## API Rate Limits\n\n| API | Free tier | Key needed to start |\n|-----|-----------|---------------------|\n| CoinPaprika | 20,000 calls/month | No |\n| DexPaprika | Keyless, and a free key raises the quota ([current figures](https://dexpaprika.com/api/pricing)) | No |\n\nPer-minute limits differ per API: CoinPaprika allows 10 requests/second per IP, DexPaprika 30 requests/minute on the free tiers and 300 on Pro. On DexPaprika, free-tier data is delayed up to 15 seconds; real-time is the Pro figure.\n\n## Resources\n\n- [CoinPaprika Docs](https://docs.coinpaprika.com) | [DexPaprika Docs](https://docs.dexpaprika.com)\n- [CoinPaprika API](https://api.coinpaprika.com) | [DexPaprika API](https://api.dexpaprika.com)\n- [AI Agents Showcase](https://agents.dexpaprika.com)\n- [LLM-readable docs](https://docs.coinpaprika.com/llms-full.txt)\n- [Streaming API](https://streaming.dexpaprika.com) (SSE, pushed when a swap moves the price)\n- [CoinPaprika CLI](https://github.com/coinpaprika/coinpaprika-cli) | [DexPaprika CLI](https://github.com/coinpaprika/dexpaprika-cli)\n\n**SDKs**: [Go](https://github.com/coinpaprika/coinpaprika-api-go-client) | [Python](https://github.com/coinpaprika/coinpaprika-api-python-client) | [Node.js](https://github.com/coinpaprika/coinpaprika-api-nodejs-client) | [PHP](https://github.com/coinpaprika/coinpaprika-api-php-client) | [Swift](https://github.com/coinpaprika/coinpaprika-api-swift-client) | [Kotlin](https://github.com/coinpaprika/coinpaprika-api-kotlin-client)\n\n## Support\n\n- [GitHub Issues](https://github.com/coinpaprika/claude-marketplace/issues)\n- support@coinpaprika.com\n\n## License\n\nMIT, see [LICENSE](LICENSE)\n",
  "bytes": 6907,
  "sha": "2b10bd8e2e5528a840c18fecb95416c555df6e7985212335c7e641593f8c23f1",
  "repo_slug": "coinpaprika/claude-marketplace",
  "fonte": "repo",
  "truncated": false,
  "api": "https://agentalog.com/api/listings/plg_coinpaprika_claude_marketplace_coinpapri_45db3a1c/readme"
}