Claudit

v1.0.0Securitystable

MCP server for searching Solodit smart contract security findings

clauditmcpai-integration
Share:
146
Stars
0
Downloads
0
Weekly
0/5

What is Claudit?

Claudit is a Model Context Protocol (MCP) server that allows AI assistants like Claude, Cursor, and VS Code to mcp server for searching solodit smart contract security findings

MCP server for searching Solodit smart contract security findings

This server falls under the Security category on MCPgee, the world's largest MCP server directory with 33,000+ servers.

Features

  • MCP server for searching Solodit smart contract security fin

Use Cases

MCP server for searching Solodit smart contract security findings
marchev

Maintainer

LicenseMIT
Languagejavascript
Versionv1.0.0
UpdatedMay 15, 2026
Statushealthy
Maintenanceactive

Works with

ClaudeOpenAIwindowsmacoslinux

Installation

Manual Installation

npx claudit

Configuration

Configuration Details

Config File

claude_desktop_config.json

Performance

Response Metrics

Response Time< 200ms
ThroughputMedium

Resource Usage

Memory UsageLow
CPU UsageLow

How to Set Up and Use Claudit

Claudit is an MCP server that gives AI coding agents direct access to Solodit's database of 20,000+ smart contract security audit findings from leading audit firms. By connecting tools like Claude Code or Cursor to Solodit's knowledge base, developers can search for known vulnerabilities, review historical audit findings by severity or protocol type, and produce security-aware smart contract code informed by real-world exploits. It requires a Solodit API key and exposes tools for searching, filtering, and retrieving detailed audit findings.

Prerequisites

  • A Solodit API key from solodit.cyfrin.io
  • Node.js 18+ for running via npx
  • Claude Code, Cursor, or another MCP-compatible client
  • Internet access to query the Solodit API
1

Obtain a Solodit API key

Register or log in at solodit.cyfrin.io and generate an API key from your account settings. This key is required for all tool calls.

2

Install via the quick installer

The fastest setup uses the provided install script which handles configuration automatically.

curl -fsSL https://raw.githubusercontent.com/marchev/claudit/main/install.sh | sh
3

Add to Claude Code manually

Alternatively, add the server to Claude Code with a single command. Replace sk_your_key_here with your actual Solodit API key.

claude mcp add --scope user --transport stdio solodit \
  --env SOLODIT_API_KEY=sk_your_key_here \
  -- npx -y @marchev/claudit@latest
4

Add to Claude Desktop via config file

For Claude Desktop, add the following to your claude_desktop_config.json file.

{
  "mcpServers": {
    "solodit": {
      "command": "npx",
      "args": ["-y", "@marchev/claudit@latest"],
      "env": {
        "SOLODIT_API_KEY": "sk_your_key_here"
      }
    }
  }
}
5

Search for security findings

Use the search_findings tool to query by severity, tags, language, or protocols. Use get_finding to retrieve full details for a specific finding, and get_filter_options to see all available filter values.

Claudit Examples

Client configuration

Claude Desktop configuration for Claudit with Solodit API key.

{
  "mcpServers": {
    "solodit": {
      "command": "npx",
      "args": ["-y", "@marchev/claudit@latest"],
      "env": {
        "SOLODIT_API_KEY": "sk_your_solodit_api_key"
      }
    }
  }
}

Prompts to try

Example queries to search Solodit's audit finding database.

- "Search Solodit for HIGH severity reentrancy findings in Solidity"
- "Find oracle manipulation vulnerabilities in lending protocols"
- "What are the most common issues found in DeFi audits?"
- "Show me recent findings tagged as flash-loan attacks"
- "Get details about the top-quality findings from Code4rena"

Troubleshooting Claudit

Authentication error: invalid or missing SOLODIT_API_KEY

Verify your API key is set correctly in the env section of your MCP config. Keys should start with sk_. Generate a new one at solodit.cyfrin.io if yours has expired.

npx @marchev/claudit@latest fails to resolve

Ensure Node.js 18+ is installed and you have internet access. Try running npx -y @marchev/claudit@latest --version directly in your terminal to check if the package is reachable from npm.

Search returns no results

Use get_filter_options first to see all valid filter values available in the database. Filter names for severity, language, and tags must match exactly what Solodit supports.

Frequently Asked Questions about Claudit

What is Claudit?

Claudit is a Model Context Protocol (MCP) server that mcp server for searching solodit smart contract security findings It connects AI assistants to external tools and data sources through a standardized interface.

How do I install Claudit?

Follow the installation instructions on the Claudit GitHub repository. Clone the repo, install dependencies, and add the server config to your AI client.

Which AI clients work with Claudit?

Claudit works with all major MCP-compatible AI clients including Claude Desktop, Claude Code, Cursor, VS Code (GitHub Copilot), Windsurf, and Cline.

Is Claudit free to use?

Yes, Claudit is open source and available under the MIT license. You can use it freely in both personal and commercial projects.

Claudit Alternatives — Similar Security Servers

Looking for alternatives to Claudit? Here are other popular security servers you can use with Claude, Cursor, and VS Code.

Casdoor

13.6k

An open-source Agent-first Identity and Access Management (IAM) /LLM MCP & agent gateway and auth server with web UI supporting OpenClaw, MCP, OAuth, OIDC, SAML, CAS, LDAP, SCIM, WebAuthn, TOTP, MFA, Face ID, Google Workspace, Azure AD

ghidraMCP

9.0k

An Model Context Protocol server that enables LLMs to autonomously reverse engineer applications by exposing Ghidra's decompilation and analysis tools. It allows AI agents to list code structures, rename methods, and analyze binaries directly through

HexStrike AI

8.9k

HexStrike AI MCP Agents is an advanced MCP server that lets AI agents (Claude, GPT, Copilot, etc.) autonomously run 150+ cybersecurity tools for automated pentesting, vulnerability discovery, bug bounty automation, and security research. Seamlessly b

IDA Pro MCP

8.7k

Enables AI-assisted reverse engineering in IDA Pro by providing tools to analyze binaries, decompile functions, manage comments, search patterns, and interact with the IDA database through natural language.

Anthropic Cybersecurity Skills

6.6k

754 structured cybersecurity skills for AI agents · Mapped to 5 frameworks: MITRE ATT&CK, NIST CSF 2.0, MITRE ATLAS, D3FEND & NIST AI RMF · agentskills.io standard · Works with Claude Code, GitHub Copilot, Codex CLI, Cursor, Gemini CLI & 20+ platform

Hooker

5.1k

🔥🔥 hooker is a Frida-based reverse engineering toolkit for Android. It offers a user-friendly CLI, universal scripts, auto hook generation, memory roaming to detect activities/services, one-click SOCKS5 proxy setup, Frida JustTrustMe, and BoringSSL u

Browse More Security MCP Servers

Explore all security servers available in the MCPgee directory. Each server includes setup guides for Claude, Cursor, and VS Code.

Quick Config Preview

{ "mcpServers": { "claudit": { "command": "npx", "args": ["-y", "claudit"] } } }

Add this to your claude_desktop_config.json or .cursor/mcp.json

Read the full setup guide →

Ready to use Claudit?

Browse our complete directory of 33,000+ MCP servers, read setup guides for your editor, and start building with the Model Context Protocol.

33,000+ ServersFree & Open SourceStep-by-Step Guides