solidit-mcp-server
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@solidit-mcp-serverSearch for reentrancy vulnerabilities"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
solidit-mcp-server
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
Get an API key at solodit.cyfrin.io (Profile > API Keys)
Add the MCP config (see Claude Code or Claude Desktop below)
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.jsonWindows:
%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-serverOr use docker-compose with a .env file:
# .env
SOLODIT_API_KEY=your-api-key-heredocker compose upTools
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 |
| string | Free-text search across titles and content |
| string[] | Severity filter: |
| string[] | Vulnerability type: |
| string[] | Audit firm: |
| string[] | Protocol type: |
| string[] | Language: |
| string | Protocol name (partial match) |
| string | Auditor handle (partial match) |
| number | Minimum quality score (0-5) |
| number | Minimum rarity score (0-5) |
| string | Preset: |
| string | Custom date cutoff (ISO format, e.g. |
| string |
|
| string |
|
| number | Page number (default: 1) |
| number | Results per page (default: 20, max: 100) |
| 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 |
| 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 |
| string[] | Required. One or more vulnerability tags |
| string[] | Severity filter: |
| string[] | Language filter |
| string[] | Protocol category filter |
| number | Page number (default: 1) |
| 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 |
| number | Days to look back (default: 30) |
| string[] | Severity filter: |
| string[] | Language filter |
| string[] | Protocol category filter |
| number | Page number (default: 1) |
| 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
Available Tools
4 toolsget_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.
| Name | Required | Description | Default |
|---|---|---|---|
| finding_id | Yes | The finding ID (UUID) or slug. Found in search_findings results or Solodit URLs. |
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| days | No | Number of days to look back (default: 30). Uses optimized presets for 30/60/90 days. | |
| page | No | Page number (default: 1) | |
| impact | No | Filter by impact severity. Values: HIGH, MEDIUM, LOW, GAS | |
| language | No | Filter 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_size | No | Results per page (default: 10, max: 100) | |
| protocol_category | No | Filter 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
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Page number (default: 1) | |
| tags | Yes | One 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 | |
| impact | No | Filter by impact severity. Values: HIGH, MEDIUM, LOW, GAS | |
| language | No | Filter 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_size | No | Results per page (default: 10, max: 100) | |
| protocol_category | No | Filter 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
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.
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.
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.
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.
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.
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
| Name | Required | Description | Default |
|---|---|---|---|
| page | No | Page number (default: 1) | |
| tags | No | Filter 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 | |
| firms | No | Filter 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 | |
| finder | No | Filter by auditor/finder handle (partial match) | |
| impact | No | Filter by impact severity. Values: HIGH, MEDIUM, LOW, GAS | |
| sort_by | No | Sort results by field. Default: Recency | |
| keywords | No | Search keywords in finding titles and content. Example: 'reentrancy', 'oracle manipulation', 'flash loan' | |
| language | No | Filter 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 | |
| protocol | No | Filter by protocol name (partial match). Example: 'Aave', 'Uniswap' | |
| page_size | No | Results per page (default: 20, max: 100) | |
| date_after | No | Filter findings after this date (ISO format: 2024-01-01). Overrides date_range if both provided. | |
| date_range | No | Filter by date range: last 30/60/90 days or all time | |
| rarity_min | No | Minimum rarity score (0-5) | |
| quality_min | No | Minimum quality score (0-5) | |
| sort_direction | No | Sort direction. Default: Desc | |
| protocol_category | No | Filter 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_length | No | Max characters of content preview per finding (default: 500, max: 5000) |
TDQS
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.
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.
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.
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.
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.
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.
4 tool updates
v1.0.0- First observed
get_finding_detail - First observed
recent_findings - First observed
search_by_tag - First observed
search_findings
TDQS
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.
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.
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.
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
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
AI security scanner for Solidity + free CC0 dataset of Sherlock audit-competition acceptance rates.
Connect AI assistants to your GitHub-hosted Obsidian vault to seamlessly access, search, and analy…
- mcpOAuthcom.vibgrate
Query your team's drift, vulnerability, and upgrade data from any AI assistant. OAuth 2.1, 51 tools.
CVE lookups (NVD) and dependency-manifest audits (OSV) for AI agents. No API keys.
Related MCP Servers
- AlicenseAqualityDmaintenanceEnables AI coding agents to scan smart contracts and code for vulnerabilities, check against 12 famous-hack patterns, and return public security receipts directly in the IDE.416MIT
- AlicenseAqualityDmaintenanceEnables 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.17MIT
- AlicenseAqualityDmaintenanceEnables 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.432157MIT
- AlicenseNot gradedqualityBmaintenanceAI-powered smart contract security analysis for AI agents and developers, enabling scanning of Solidity repos for vulnerabilities.168MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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