Skip to main content
Glama
HBlackfoxx

solidit-mcp-server

by HBlackfoxx

solidit-mcp-server

npm version License: MIT

Give AI assistants instant access to Solodit's 49,000+ blockchain vulnerability database.

An MCP server that connects Claude (and other MCP clients) to the Solodit audit findings API -- search vulnerabilities, browse recent discoveries, and look up specific findings directly from your AI workflow.

Runs via npx solidit-mcp-server with zero global installation required.

Quick Start

  1. Get an API key at solodit.cyfrin.io (Profile > API Keys)

  2. Add the MCP config (see Claude Code or Claude Desktop below)

  3. Start using it -- ask Claude something like:

    "Search for reentrancy vulnerabilities in DeFi protocols"

Related MCP server: Exploit Intel Platform MCP Server

Claude Code

Add to your .mcp.json (project-level) or ~/.claude/mcp.json (global):

{
  "mcpServers": {
    "solodit": {
      "command": "npx",
      "args": ["-y", "solidit-mcp-server"],
      "env": { "SOLODIT_API_KEY": "your-api-key-here" }
    }
  }
}

Claude Desktop

Add to your Claude Desktop config file:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json

  • Windows: %APPDATA%\Claude\claude_desktop_config.json

{
  "mcpServers": {
    "solodit": {
      "command": "npx",
      "args": ["-y", "solidit-mcp-server"],
      "env": { "SOLODIT_API_KEY": "your-api-key-here" }
    }
  }
}

Docker

Build and run locally:

docker build -t solidit-mcp-server .
docker run -i -e SOLODIT_API_KEY=your-api-key-here solidit-mcp-server

Or use docker-compose with a .env file:

# .env
SOLODIT_API_KEY=your-api-key-here
docker compose up

Tools

search_findings

Full-featured search across Solodit's database with 14+ filters. All parameters are optional -- a bare call returns recent findings.

Parameter

Type

Description

keywords

string

Free-text search across titles and content

impact

string[]

Severity filter: HIGH, MEDIUM, LOW, GAS

tags

string[]

Vulnerability type: Reentrancy, Oracle, Access Control, Integer Overflow/Underflow, Front-running, Logic Error, DOS, Price Manipulation, Flash Loan, Griefing, etc.

firms

string[]

Audit firm: Cyfrin, Sherlock, Code4rena, Trail of Bits, OpenZeppelin, etc.

protocol_category

string[]

Protocol type: DeFi, NFT, Lending, DEX, Staking, Governance, Bridge, etc.

language

string[]

Language: Solidity, Rust, Cairo, Vyper, Move

protocol

string

Protocol name (partial match)

finder

string

Auditor handle (partial match)

quality_min

number

Minimum quality score (0-5)

rarity_min

number

Minimum rarity score (0-5)

date_range

string

Preset: 30, 60, 90 days, or alltime

date_after

string

Custom date cutoff (ISO format, e.g. 2024-01-01)

sort_by

string

Recency, Quality, or Rarity

sort_direction

string

Desc or Asc

page

number

Page number (default: 1)

page_size

number

Results per page (default: 20, max: 100)

max_content_length

number

Content preview length (default: 500, max: 5000)

Example: "Find high-impact reentrancy findings in DeFi protocols audited by Cyfrin"

get_finding_detail

Retrieve the full content and metadata of a single finding by ID or slug. Use after seeing a result in search_findings to get the complete writeup.

Parameter

Type

Description

finding_id

string

The finding ID (UUID) or slug from search results or Solodit URLs

Example: "Get the full details of finding abc-123-def"

search_by_tag

Search by vulnerability tags, sorted by quality score (best examples first). Ideal for finding high-quality writeups about a specific vulnerability class.

Parameter

Type

Description

tags

string[]

Required. One or more vulnerability tags

impact

string[]

Severity filter: HIGH, MEDIUM, LOW, GAS

language

string[]

Language filter

protocol_category

string[]

Protocol category filter

page

number

Page number (default: 1)

page_size

number

Results per page (default: 10, max: 100)

Example: "Find the best oracle manipulation examples in Solidity"

recent_findings

Browse the latest findings from the last N days, sorted by recency (newest first).

Parameter

Type

Description

days

number

Days to look back (default: 30)

impact

string[]

Severity filter: HIGH, MEDIUM, LOW, GAS

language

string[]

Language filter

protocol_category

string[]

Protocol category filter

page

number

Page number (default: 1)

page_size

number

Results per page (default: 10, max: 100)

Example: "Show me high-impact findings from the last 7 days"

API Key

This server requires a Solodit API key. Get yours at solodit.cyfrin.io under Profile > API Keys.

The key is passed via the SOLODIT_API_KEY environment variable in your MCP configuration (see setup sections above).

License

MIT

Available Tools

4 tools
get_finding_detailGet Finding DetailA

Retrieve the full content and all metadata of a single Solodit finding by its ID or slug. Use this tool when you already know which finding you want to examine in detail -- for example, after seeing a relevant title in search_findings results. Returns the complete untruncated content, all tags, finders, contest info, and links.

When to use:

  • You have a finding ID or slug and want the full content

  • Following up on a search result to read the complete vulnerability description

  • Need all metadata (finders, contest details, all links) for a specific finding

Use search_findings instead if you need to search by keyword or apply filters. Use search_by_tag for quick vulnerability pattern lookups. Use recent_findings to browse the latest discoveries.

ParametersJSON Schema
NameRequiredDescriptionDefault
finding_idYesThe finding ID (UUID) or slug. Found in search_findings results or Solodit URLs.

TDQS

A4.7/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description must carry the full burden. It discloses that the tool returns 'complete untruncated content, all tags, finders, contest info, and links,' which implies a read-only behavior. However, it does not explicitly state that it is non-destructive, has no side effects, or mention any authentication or rate limit requirements. The transparency is good but not exhaustive.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is well-structured: a clear purpose sentence, a 'when to use' paragraph, a bulleted list of use cases, and a distinct section for alternatives. Every sentence is informative and earns its place; no filler or repetition.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a single-parameter retrieval tool with no output schema, the description covers all necessary aspects: what it returns, when to use it, and which sibling tools to use instead. The agent can confidently decide when and how to invoke this tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema coverage is 100% (one parameter fully described in the schema). The description adds value by connecting the parameter to its source ('Found in search_findings results or Solodit URLs'), which aids the agent in constructing the correct input. This goes beyond the schema's own description.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('Retrieve') and resource ('full content and all metadata of a single Solodit finding by its ID or slug'). It clearly distinguishes from siblings by outlining when to use this tool versus search_findings, search_by_tag, and recent_findings.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly states when to use the tool ('when you already know which finding you want to examine in detail'), provides three bullet points of use cases, and lists three sibling tools to use instead under different conditions. This is exemplary guidance.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

recent_findingsRecent FindingsA

Browse the most recent Solodit findings from the last N days. Results are sorted by recency (newest first). Default: last 30 days.

When to use:

  • Checking what new vulnerabilities have been discovered recently

  • Staying up to date on the latest audit findings

  • Browsing recent findings filtered by impact level, language, or protocol category

Use search_findings for complex multi-filter queries. Use search_by_tag to find specific vulnerability patterns regardless of date. Use get_finding_detail to read the full content of a specific finding.

ParametersJSON Schema
NameRequiredDescriptionDefault
daysNoNumber of days to look back (default: 30). Uses optimized presets for 30/60/90 days.
pageNoPage number (default: 1)
impactNoFilter by impact severity. Values: HIGH, MEDIUM, LOW, GAS
languageNoFilter by programming language. All available (use exact casing): Solidity, Rust, Go, Move, TypeScript, Vyper, FunC, JavaScript, Cairo, Dart, Python, Circom, Cosmos, Sway, Yul, Noir, Tact
page_sizeNoResults per page (default: 10, max: 100)
protocol_categoryNoFilter by protocol category. All available (use exact casing): Dexes, CDP, Services, Cross Chain, Yield, Liquid Staking, Synthetics, Staking Pool, Yield Aggregator, Payments, Bridge, Launchpad, RWA, Leveraged Farming, Indexes, Liquidity manager, Options Vault, Oracle, Derivatives, Lending, Privacy, Insurance, NFT Marketplace, NFT Lending, Algo-Stables, RWA Lending, Gaming, Prediction Market, Farm, Decentralized Stablecoin, Reserve Currency, Uncollateralized Lending

TDQS

A4.4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden. It discloses sorting behavior ('sorted by recency (newest first)'), default time range (30 days), and available filters (impact, language, protocol category). It does not mention pagination details or rate limits, but the schema covers page/page_size. The description is transparent about the core behavior.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise and well-structured: a single-sentence summary, followed by a bullet list of when-to-use scenarios, and then a clear list of alternatives. Every sentence contributes value, and the structure is front-loaded with the most important information. No redundant or verbose content.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool has 6 parameters (all optional) and no output schema. The description covers the main intent (browsing recent findings with filters) and specifies sorting and default time range. It does not describe the output format or pagination behavior, but the schema provides page/page_size defaults. For a browse tool, the description is fairly complete, though a note about the structure of returned findings would be helpful.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so the baseline is 3. The description adds minimal new meaning beyond the schema: it mentions 'optimized presets for 30/60/90 days' for the 'days' parameter, and lists the filter categories (impact, language, protocol category) which are already detailed in the schema. The description does not significantly enhance parameter understanding beyond what the schema provides.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: 'Browse the most recent Solodit findings from the last N days.' It specifies the verb (browse), resource (findings), and scope (recent, last N days, sorted by recency). It also distinguishes itself from siblings by naming alternative tools with different use cases.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides explicit 'When to use' scenarios (checking new vulnerabilities, staying up to date, browsing with filters) and explicitly lists when NOT to use the tool, directing to search_findings, search_by_tag, and get_finding_detail for specific alternatives. This is excellent guidance for an AI agent.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

search_by_tagSearch by Vulnerability TagA

Search Solodit findings by one or more vulnerability tags. Optimized for finding examples of specific vulnerability patterns -- results are sorted by quality score (best examples first).

When to use:

  • Looking for examples of a specific vulnerability type (e.g., Reentrancy, Oracle, Access Control)

  • Checking if a vulnerability pattern applies to code under review

  • Finding high-quality writeups about a vulnerability class

Top tags (use exact casing): Business Logic, Validation, Wrong Math, Front-Running, DOS, Fee On Transfer, Oracle, Reentrancy, Access Control, Don't update state, Decimals, Liquidation, Overflow/Underflow, Admin, Denial-Of-Service, Slippage, Missing-Logic, Rounding, Stale Price, ERC4626, First Depositor Issue, Chainlink, Flash Loan, Weird ERC20, Configuration, ERC20, Missing Check, Fund Lock, Uniswap, Vote, ERC721, Coding-Bug, NFT, Sandwich Attack, Approve, Chain Reorganization Attack, Swap, ERC1155, Gas Limit, Lending Pool, Blacklisted, Allowance, Bypass limit, Initialization, Auction, Precision Loss, Replay Attack, Grief Attack, Share Inflation, ERC777, Pause, Upgradable, TWAP, Vault, Cross Chain, Bridge, Read-only Reentrancy, and 150+ more.

Use search_findings for complex multi-filter queries (keyword + firm + date + more). Use get_finding_detail to read the full content of a specific finding. Use recent_findings to browse the latest discoveries.

ParametersJSON Schema
NameRequiredDescriptionDefault
pageNoPage number (default: 1)
tagsYesOne or more vulnerability tags (required). Available tags (use exact casing): Business Logic, Validation, Wrong Math, Front-Running, DOS, Fee On Transfer, Oracle, Reentrancy, Access Control, Don't update state, Decimals, Liquidation, Overflow/Underflow, Admin, Denial-Of-Service, Slippage, Missing-Logic, Rounding, Stale Price, ERC4626, First Depositor Issue, Chainlink, Flash Loan, Weird ERC20, Configuration, ERC20, Missing Check, Fund Lock, Uniswap, Vote, ERC721, Coding-Bug, NFT, Sandwich Attack, Approve, Chain Reorganization Attack, Swap, Deposit/Reward tokens, ERC1155, Gas Limit, Lending Pool, Blacklisted, Allowance, Bypass limit, call vs transfer, Initialization, Auction, SafeTransfer, transferFrom vs safeTransferFrom, Type casting, Ownership, Precision Loss, Replay Attack, Grief Attack, Refund Ether, Share Inflation, ERC777, Code Quality, Pause, Upgradable, EIP-4626, Min/Max Cap Validation, Payable, Timing, TWAP, Vault, Cross Chain, Delegate, External Call, Initial Deposit, Bridge, Broken Loop, External Contract, LayerZero, Read-only Reentrancy, and 100+ more
impactNoFilter by impact severity. Values: HIGH, MEDIUM, LOW, GAS
languageNoFilter by programming language. All available (use exact casing): Solidity, Rust, Go, Move, TypeScript, Vyper, FunC, JavaScript, Cairo, Dart, Python, Circom, Cosmos, Sway, Yul, Noir, Tact
page_sizeNoResults per page (default: 10, max: 100)
protocol_categoryNoFilter by protocol category. All available (use exact casing): Dexes, CDP, Services, Cross Chain, Yield, Liquid Staking, Synthetics, Staking Pool, Yield Aggregator, Payments, Bridge, Launchpad, RWA, Leveraged Farming, Indexes, Liquidity manager, Options Vault, Oracle, Derivatives, Lending, Privacy, Insurance, NFT Marketplace, NFT Lending, Algo-Stables, RWA Lending, Gaming, Prediction Market, Farm, Decentralized Stablecoin, Reserve Currency, Uncollateralized Lending

TDQS

A4.6/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations provided, so description carries full burden. It discloses sorting by quality score, that results are best examples first, and that tags use exact casing. However, it doesn't explain pagination behavior or what happens with invalid tags. A 4 is generous but justified given the clear behavioral claim about optimization and sorting.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is front-loaded with the core purpose in the first sentence, followed by sorting behavior. Usage guidelines are clearly sectioned. The tag lists are long but justified by the necessity for exact casing. One sentence could be trimmed ('results are sorted by quality score' is already implied by 'optimized for finding examples'). Still, overall efficient.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Despite 6 parameters and no output schema, the description is complete. It covers all key aspects: what the tool does, when to use it, behavior (sorting), tag usage guidance, and clear sibling differentiation. The lack of output schema is mitigated because the purpose is clearly retrieval of findings examples, and the schema path explains parameters fully.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, but the description adds value by listing commonly used tags in an organized manner and repeating them for easy copy-paste. It also provides the exact casing requirement which is critical for correct usage. The 'max: 100' and 'defaults' are already in schema, but the human-readable list of top tags adds semantic value beyond schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states it searches Solodit findings by vulnerability tags, specific verb 'search' + resource 'findings' + qualifier 'by vulnerability tags'. It distinguishes itself from siblings by mentioning it's optimized for specific vulnerability pattern examples with quality sorting, while sibling 'search_findings' is for complex multi-filter queries.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Provides explicit 'When to use' bullet points with three concrete scenarios. Directly names alternatives: 'Use search_findings for complex multi-filter queries', 'Use get_finding_detail to read full content', and 'Use recent_findings to browse'. This gives clear guidance on when not to use this tool.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

search_findingsSearch Solodit FindingsA

Search Solodit's database of 49,000+ blockchain security audit findings with full filter power. Returns structured results with title, impact, summary, tags, firm, scores, and content preview. All parameters are optional -- a bare call returns recent findings.

This is the most powerful search tool with 14+ filters. For simpler queries, consider:

  • get_finding_detail: Get full content of a specific finding by ID or slug

  • search_by_tag: Quick vulnerability pattern lookup by tag (sorted by quality)

  • recent_findings: Browse latest discoveries from the last N days

When to use: You need complex multi-filter queries combining keywords, firms, date ranges, and other advanced filters that the convenience tools don't support.

Available filters:

  • keywords: Free-text search across titles and content

  • impact: Severity (HIGH, MEDIUM, LOW, GAS)

  • tags: Vulnerability type — top tags: Business Logic, Validation, Wrong Math, Front-Running, DOS, Fee On Transfer, Oracle, Reentrancy, Access Control, Decimals, Liquidation, Overflow/Underflow, Slippage, Missing-Logic, Rounding, Stale Price, ERC4626, First Depositor Issue, Chainlink, Flash Loan, Weird ERC20, ERC20, Missing Check, Fund Lock, Uniswap, Vote, ERC721, NFT, Sandwich Attack, Lending Pool, Precision Loss, Replay Attack, Share Inflation, Read-only Reentrancy, and 170+ more

  • firms: Audit firm — all 30: Code4rena, Zokyo, OpenZeppelin, Pashov Audit Group, Cantina, Sherlock, Halborn, Quantstamp, MixBytes, OtterSec, Spearbit, TrailOfBits, Cyfrin, ConsenSys, Codehawks, SigmaPrime, Shieldify, Immunefi, Trust Security, Hexens, ZachObront, Guardian Audits, AuditOne, Recon Audits, 0x52, Oxorio, Kann, ThreeSigma, Hans, Naman

  • protocol_category: All 32: Dexes, CDP, Services, Cross Chain, Yield, Liquid Staking, Synthetics, Staking Pool, Yield Aggregator, Payments, Bridge, Launchpad, RWA, Leveraged Farming, Indexes, Liquidity manager, Options Vault, Oracle, Derivatives, Lending, Privacy, Insurance, NFT Marketplace, NFT Lending, Algo-Stables, RWA Lending, Gaming, Prediction Market, Farm, Decentralized Stablecoin, Reserve Currency, Uncollateralized Lending

  • language: All 17: Solidity, Rust, Go, Move, TypeScript, Vyper, FunC, JavaScript, Cairo, Dart, Python, Circom, Cosmos, Sway, Yul, Noir, Tact

  • protocol: Protocol name (partial match)

  • finder: Auditor handle (partial match)

  • quality_min / rarity_min: Minimum score thresholds (0-5)

  • date_range: Preset ranges (30, 60, 90 days, or alltime)

  • date_after: Custom date cutoff (ISO format)

  • sort_by / sort_direction: Ordering (Recency/Quality/Rarity, Desc/Asc)

  • page / page_size: Pagination controls

ParametersJSON Schema
NameRequiredDescriptionDefault
pageNoPage number (default: 1)
tagsNoFilter by vulnerability tags. Available tags (use exact casing): Business Logic, Validation, Wrong Math, Front-Running, DOS, Fee On Transfer, Oracle, Reentrancy, Access Control, Don't update state, Decimals, Liquidation, Overflow/Underflow, Admin, Denial-Of-Service, Slippage, Missing-Logic, Rounding, Stale Price, ERC4626, First Depositor Issue, Chainlink, Flash Loan, Weird ERC20, Configuration, ERC20, Missing Check, Fund Lock, Uniswap, Vote, ERC721, Coding-Bug, NFT, Sandwich Attack, Approve, Chain Reorganization Attack, Swap, Deposit/Reward tokens, ERC1155, Gas Limit, Lending Pool, Blacklisted, Allowance, Bypass limit, call vs transfer, Initialization, Auction, SafeTransfer, transferFrom vs safeTransferFrom, Type casting, Ownership, Precision Loss, Replay Attack, Grief Attack, Refund Ether, Share Inflation, ERC777, Code Quality, Pause, Upgradable, EIP-4626, Min/Max Cap Validation, Payable, Timing, TWAP, Vault, Cross Chain, Delegate, External Call, Initial Deposit, Bridge, Broken Loop, External Contract, LayerZero, Read-only Reentrancy, and 100+ more
firmsNoFilter by audit firm. All available firms (use exact casing): Code4rena, Zokyo, OpenZeppelin, Pashov Audit Group, Cantina, Sherlock, Halborn, Quantstamp, MixBytes, OtterSec, Spearbit, TrailOfBits, Cyfrin, ConsenSys, Codehawks, SigmaPrime, Shieldify, Immunefi, Trust Security, Hexens, ZachObront, Guardian Audits, AuditOne, Recon Audits, 0x52, Oxorio, Kann, ThreeSigma, Hans, Naman
finderNoFilter by auditor/finder handle (partial match)
impactNoFilter by impact severity. Values: HIGH, MEDIUM, LOW, GAS
sort_byNoSort results by field. Default: Recency
keywordsNoSearch keywords in finding titles and content. Example: 'reentrancy', 'oracle manipulation', 'flash loan'
languageNoFilter by programming language. All available languages (use exact casing): Solidity, Rust, Go, Move, TypeScript, Vyper, FunC, JavaScript, Cairo, Dart, Python, Circom, Cosmos, Sway, Yul, Noir, Tact
protocolNoFilter by protocol name (partial match). Example: 'Aave', 'Uniswap'
page_sizeNoResults per page (default: 20, max: 100)
date_afterNoFilter findings after this date (ISO format: 2024-01-01). Overrides date_range if both provided.
date_rangeNoFilter by date range: last 30/60/90 days or all time
rarity_minNoMinimum rarity score (0-5)
quality_minNoMinimum quality score (0-5)
sort_directionNoSort direction. Default: Desc
protocol_categoryNoFilter by protocol category. All available categories (use exact casing): Dexes, CDP, Services, Cross Chain, Yield, Liquid Staking, Synthetics, Staking Pool, Yield Aggregator, Payments, Bridge, Launchpad, RWA, Leveraged Farming, Indexes, Liquidity manager, Options Vault, Oracle, Derivatives, Lending, Privacy, Insurance, NFT Marketplace, NFT Lending, Algo-Stables, RWA Lending, Gaming, Prediction Market, Farm, Decentralized Stablecoin, Reserve Currency, Uncollateralized Lending
max_content_lengthNoMax characters of content preview per finding (default: 500, max: 5000)

TDQS

A4.4/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden. It states that parameters are optional, a bare call returns recent findings, and returns structured results. It does not explicitly state read-only behavior, side effects, rate limits, or performance characteristics. While safe for a search tool, more disclosure would improve transparency.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is well-structured: a concise overview, then a bulleted list of siblings with guidance, then 'When to use', then a complete list of filters. Every sentence adds value, and the most important information (purpose, differentiation) is front-loaded. No wasted words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the complexity (17 parameters, no output schema, no annotations), the description covers purpose, usage guidance, filter details, and return structure. It is nearly complete, but could mention behavioral aspects like read-only nature or any rate limits to be fully comprehensive.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so baseline is 3. The description adds value by listing all filters with examples, enumerating top tags, all firms, and categories, and providing context like 'example values'. This goes beyond the schema descriptions, aiding the agent in understanding parameter usage.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb 'Search' and the resource 'Solodit's database of blockchain security audit findings'. It distinguishes itself from sibling tools by positioning as the most powerful with 14+ filters, and mentions specific alternatives for simpler queries.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Explicitly says when to use: 'complex multi-filter queries... that the convenience tools don't support'. It also provides clear alternatives: get_finding_detail, search_by_tag, recent_findings, with brief descriptions of each. This is excellent guidance for the agent.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 4 tool updatesv1.0.0
    • First observedget_finding_detail
    • First observedrecent_findings
    • First observedsearch_by_tag
    • First observedsearch_findings

TDQS

A4.5/5.0
Disambiguation5/5

Each tool has a clearly distinct purpose: search_findings for complex queries, get_finding_detail for full content retrieval, search_by_tag for pattern lookup, and recent_findings for browsing. No overlap or ambiguity exists.

Naming Consistency4/5

Tool names follow a consistent snake_case pattern with clear verb_noun structure (search_findings, get_finding_detail, search_by_tag, recent_findings). However, 'recent_findings' uses an adjective instead of a verb, slightly breaking the pattern.

Tool Count5/5

With 4 tools, the set is well-scoped for querying a blockchain audit finding database. Each tool serves a distinct access pattern—search, detail, tag-based lookup, and recency browsing—without unnecessary bloat.

Completeness4/5

The tool surface covers the main ways to discover and retrieve findings: search, detail, tag, and recent. A minor gap is the lack of bulk export or comparison tools, but the core functionality is complete for an audit database query service.

Maintenance

ActivityInactive
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    A
    quality
    D
    maintenance
    Enables AI assistants to search and analyze vulnerabilities and exploits from multiple intelligence sources, including NVD, CISA KEV, ExploitDB, Metasploit, and more, with tools for CVE research, exploit analysis, and report generation.
    17
    MIT
  • A
    license
    A
    quality
    D
    maintenance
    Enables searching over 20,000+ smart contract audit findings from Solodit, with filters for severity, firm, tags, and more. Designed for use with AI coding agents like Claude Code and Codex CLI.
    4
    32
    157
    MIT

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/HBlackfoxx/solidit-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server