solodit

Search 50,000+ smart contract vulnerabilities from Cyfrin Solodit. 8 MCP tools with intelligent caching for searching, filtering, and analyzing blockchain security findings.

Safety Notice

This listing is imported from skills.sh public index metadata. Review upstream SKILL.md and repository scripts before running.

Copy this and send it to your AI assistant to learn

Install skill "solodit" with this command: npx skills add bowtiedswan/solodit-api-skill/bowtiedswan-solodit-api-skill-solodit

Solodit API Skill

Search and retrieve smart contract security vulnerabilities from Cyfrin Solodit - the world's largest database of blockchain security findings.

Overview

Solodit aggregates 50,000+ security findings from top audit firms including Cyfrin, Sherlock, Code4rena, Trail of Bits, OpenZeppelin, and more. This skill provides 8 MCP tools with intelligent caching:

  • search_vulnerabilities - Search by keywords, severity, audit firm, tags, protocol, and more
  • get_finding - Retrieve a specific finding by ID or slug
  • list_audit_firms - List all available audit firms (cached 24h)
  • list_tags - List all vulnerability tags (cached 24h)
  • list_protocol_categories - List protocol categories (DeFi, NFT, Lending, etc.)
  • list_languages - List supported languages (Solidity, Rust, Cairo, etc.)
  • get_statistics - Database statistics and cache status
  • clear_cache - Clear cached data for fresh results

Setup

1. Get Your API Key

  1. Create an account at solodit.cyfrin.io
  2. Click your profile dropdown in the top right corner
  3. Open "API Keys" modal and generate a new API key

2. Set Environment Variable

export CYFRIN_API_KEY="sk_your_api_key_here"

Add to your shell profile (~/.bashrc, ~/.zshrc) for persistence.

MCP Tools Reference

search_vulnerabilities

Search and filter security findings from the Solodit database.

Parameters:

ParameterTypeDescription
keywordsstringSearch terms (e.g., "reentrancy", "oracle manipulation")
impactstring[]Severity filter: ["HIGH"], ["HIGH", "MEDIUM"], etc.
audit_firmsstring[]Filter by auditor: ["Cyfrin", "Sherlock"]
tagsstring[]Vulnerability tags: ["Reentrancy", "Oracle", "Access Control"]
protocol_categoriesstring[]Protocol types: ["DeFi", "NFT", "Lending"]
languagesstring[]Programming language: ["Solidity", "Rust", "Cairo"]
protocolstringProtocol name (partial match)
min_qualitynumberMinimum quality score (1-5)
sortstringSort by: "recency", "quality", "rarity"
pagenumberPage number (default: 1)
page_sizenumberResults per page (max: 100, default: 20)

get_finding

Retrieve a specific vulnerability by its ID or slug.

Parameters:

ParameterTypeDescription
idstringFinding ID (numeric) or slug (URL-friendly identifier)
verbosebooleanInclude full content and summary (default: true)

list_audit_firms

List all available audit firms in the database. Cached for 24 hours.

Parameters:

ParameterTypeDescription
refreshbooleanForce refresh the cached list (default: false)

list_tags

List all available vulnerability tags. Cached for 24 hours.

Parameters:

ParameterTypeDescription
refreshbooleanForce refresh the cached list (default: false)

list_protocol_categories

List all protocol categories (DeFi, NFT, Lending, DEX, Bridge, etc.).

list_languages

List all supported programming languages (Solidity, Rust, Cairo, Vyper, Move, Huff, Fe, Ink!).

get_statistics

Get database statistics including total findings, cache status, and rate limit info.

clear_cache

Clear cached data to fetch fresh results.

Parameters:

ParameterTypeDescription
typestringCache type: "all", "search", "findings", "metadata"

Caching

The MCP server implements intelligent caching to reduce API calls:

Cache TypeTTLPurpose
Search Results5 minutesRecent search queries
Individual Findings1 hourFindings by ID/slug
Metadata24 hoursAudit firms, tags lists

Curl Fallback

For environments without MCP support, use curl directly:

Basic Search

curl -X POST https://solodit.cyfrin.io/api/v1/solodit/findings \
  -H "Content-Type: application/json" \
  -H "X-Cyfrin-API-Key: $CYFRIN_API_KEY" \
  -d '{
    "page": 1,
    "pageSize": 20
  }'

Search with Filters

curl -X POST https://solodit.cyfrin.io/api/v1/solodit/findings \
  -H "Content-Type: application/json" \
  -H "X-Cyfrin-API-Key: $CYFRIN_API_KEY" \
  -d '{
    "page": 1,
    "pageSize": 20,
    "filters": {
      "keywords": "reentrancy",
      "impact": ["HIGH", "MEDIUM"],
      "sortField": "Quality",
      "sortDirection": "Desc"
    }
  }'

Filter by Audit Firm

curl -X POST https://solodit.cyfrin.io/api/v1/solodit/findings \
  -H "Content-Type: application/json" \
  -H "X-Cyfrin-API-Key: $CYFRIN_API_KEY" \
  -d '{
    "page": 1,
    "pageSize": 20,
    "filters": {
      "firms": [{"value": "Cyfrin"}, {"value": "Sherlock"}],
      "impact": ["HIGH"]
    }
  }'

Example Workflows

Security Audit Preparation

Search for all HIGH severity findings in lending protocols from the last 90 days, sorted by quality score

Vulnerability Research

Find oracle manipulation vulnerabilities in DeFi protocols with quality score 4 or higher

Learning Specific Attack Patterns

Search for flash loan attack examples with tag "Flash Loan" sorted by rarity

Exploring the Database

List all audit firms available in the database
Get database statistics

Rate Limiting

  • Limit: 20 requests per 60-second window
  • Headers: Check X-RateLimit-Remaining in responses
  • Caching: Significantly reduces API calls
  • Warnings: Alerts when ≤5 requests remaining

Common Tags

  • Reentrancy
  • Oracle
  • Access Control
  • Integer Overflow/Underflow
  • Front-running
  • Price Manipulation
  • Flash Loan
  • Griefing
  • DOS
  • Logic Error

Common Audit Firms

  • Cyfrin
  • Sherlock
  • Code4rena
  • Trail of Bits
  • OpenZeppelin
  • Consensys Diligence
  • Spearbit
  • Pashov Audit Group
  • Hacken
  • ChainSecurity

Protocol Categories

  • DeFi
  • NFT / NFT Marketplace
  • Lending / NFT Lending
  • DEX
  • Staking / Liquid Staking
  • Governance / DAO
  • Bridge / Cross-Chain
  • Yield Aggregator
  • Options / Options Vault
  • Oracles
  • Gaming
  • RWA

Support

Source Transparency

This detail page is rendered from real SKILL.md content. Trust labels are metadata-based hints, not a safety guarantee.

Related Skills

Related by shared tags or category signals.

General

animejs

No summary provided by upstream source.

Repository SourceNeeds Review
General

rive

No summary provided by upstream source.

Repository SourceNeeds Review
Automation

agent-browser

No summary provided by upstream source.

Repository SourceNeeds Review
General

rlm

No summary provided by upstream source.

Repository SourceNeeds Review