Farofino 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., "@Farofino MCP Serveraudit the contract at /contracts/Vault.sol using Slither"
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.
Faro Fino - Smart Contract Audit MCP Server
A Model Context Protocol (MCP) server for auditing smart contracts using industry-standard tools like Slither, Aderyn, and custom pattern analysis.
Overview
This MCP server provides a unified interface for running multiple smart contract security analysis tools through the Model Context Protocol. It enables AI assistants and other MCP clients to perform comprehensive security audits on Solidity and Vyper smart contracts.
Features
Slither Integration: Static analysis framework for Solidity & Vyper
Aderyn Integration: Rust-based static analyzer for Solidity
Pattern Analysis: Custom pattern-based security checks for common vulnerabilities
Contract Reading: Read and inspect contract source code
Tool Management: Check which audit tools are installed and get installation instructions
Installation
Option 1: Docker (Recommended - All Tools Pre-installed)
Use Docker for a hassle-free setup with all audit tools pre-installed:
# Clone the repository
git clone https://github.com/italoag/farofino-mcp.git
cd farofino-mcp
# Build and run with Docker Compose
docker-compose build
docker-compose run --rm farofino-mcpIf you encounter network timeout errors during build, see DOCKER_NETWORK_TIMEOUT.md for quick fixes or use:
make build-retry # Automatically handles network issuesAdvantages:
Aderyn and Slither pre-installed
Consistent environment across all platforms
No dependency conflicts
Optimized slim image (~1.3-1.4GB)
See DOCKER.md for detailed Docker setup and configuration.
Option 2: pip Installation
Prerequisites
Python 3.9 or higher
pip
Install the MCP Server
pip install farofino-mcpOr install locally from source:
git clone https://github.com/italoag/farofino-mcp.git
cd farofino-mcp
pip install -r requirements.txt
pip install -e .Install Audit Tools (Optional)
The server works with various external audit tools. Install the ones you need:
Slither:
pip install slither-analyzerAderyn: (via Cyfrinup)
curl -LsSf https://raw.githubusercontent.com/Cyfrin/up/main/install | bash
CYFRINUP_ONLY_INSTALL=aderyn cyfrinupYou can check which tools are installed using the check_tools command.
Usage
With Docker
# Using Docker Compose
docker-compose run --rm farofino-mcp
# Or with Docker directly
docker run -i --rm -v $(pwd)/contracts:/contracts:ro farofino-mcp:latestSee DOCKER.md for detailed Docker usage and configuration.
Without Docker
Running the Server
python3 -m farofino_mcpOr if installed as a package:
farofino-mcpAvailable Tools
1. slither_audit
Run Slither static analysis on a smart contract.
Parameters:
contract_path(required): Path to the contract file (.sol or .vy)detectors(optional): Comma-separated list of specific detectors to runexclude_detectors(optional): Comma-separated list of detectors to exclude
Example: (replace /path/to/MyContract.sol with your actual file path)
{
"contract_path": "/path/to/MyContract.sol",
"detectors": "reentrancy-eth,unchecked-transfer"
}2. aderyn_audit
Run Aderyn static analysis on a smart contract.
Parameters:
contract_path(required): Path to the contract file or project root
Example: (replace /path/to/MyContract.sol with your actual file path)
{
"contract_path": "/path/to/MyContract.sol"
}3. pattern_analysis
Perform basic pattern-based security analysis.
Parameters:
contract_path(required): Path to the contract file
Example: (replace /path/to/MyContract.sol with your actual file path)
{
"contract_path": "/path/to/MyContract.sol"
}Checks for:
selfdestructusagedelegatecallusagetx.originauthenticationMissing SafeMath (pre-0.8.0)
block.timestampmanipulation risksPotential reentrancy patterns
4. read_contract
Read and return the source code of a smart contract.
Parameters:
contract_path(required): Path to the contract file
Example: (replace /path/to/MyContract.sol with your actual file path)
{
"contract_path": "/path/to/MyContract.sol"
}5. check_tools
Check which audit tools are installed and available.
Parameters: None
Example:
{}Returns a list of available and missing tools with installation instructions.
Configuration with Claude Desktop
Add this to your Claude Desktop configuration file:
Configuration File Locations
macOS:
~/Library/Application Support/Claude/claude_desktop_config.jsonWindows:
%APPDATA%/Claude/claude_desktop_config.jsonLinux:
~/.config/Claude/claude_desktop_config.json
Option 1: Using Docker (Recommended - All Tools Pre-installed)
{
"mcpServers": {
"farofino": {
"command": "docker",
"args": ["run", "-i", "--rm", "-v", "${PWD}/contracts:/contracts:ro", "farofino-mcp:latest"],
"cwd": "/path/to/farofino-mcp"
}
}
}Notes:
Replace
/path/to/farofino-mcpwith the absolute path to this repository on your host machine so Docker sees the right directory.On Windows, replace
${PWD}with%CD%.
Option 2: Using Docker Compose
{
"mcpServers": {
"farofino": {
"command": "docker-compose",
"args": ["run", "--rm", "farofino-mcp"],
"cwd": "/path/to/farofino-mcp"
}
}
}Tip: Replace /path/to/farofino-mcp with the absolute host path so docker-compose finds the repo configuration.
Option 3: Using Python Module (No Docker)
{
"mcpServers": {
"farofino": {
"command": "python3",
"args": ["-m", "farofino_mcp"],
"cwd": "/path/to/farofino-mcp"
}
}
}Tip: Replace the cwd placeholder with the absolute directory where you installed farofino-mcp.
Option 4: Using pip Installation (No Docker)
{
"mcpServers": {
"farofino": {
"command": "farofino-mcp"
}
}
}For more Docker configuration options, see DOCKER.md.
Example Workflow
Replace /path/to/contract.sol with the actual location of your Solidity file in the steps below.
Check available tools:
Use check_tools to see which audit tools are installedRead the contract:
Use read_contract with contract_path="/path/to/contract.sol"Run pattern analysis (always available):
Use pattern_analysis with contract_path="/path/to/contract.sol"Run Slither analysis (if installed):
Use slither_audit with contract_path="/path/to/contract.sol"Run additional tools as needed:
Aderyn for Rust-based analysis (pre-installed in the Docker image or via Cyfrinup)
Development
Building from Source
git clone https://github.com/italoag/farofino-mcp.git
cd farofino-mcp
pip install -r requirements.txt
pip install -e .Development Mode
# Run directly from source
python3 -m farofino_mcp
# With debugging
python3 -u -m farofino_mcpProject Structure
farofino-mcp/
├── farofino_mcp/
│ ├── __init__.py # Package initialization
│ └── __main__.py # Main server implementation
├── pyproject.toml # Python project configuration
├── requirements.txt # Python dependencies
├── setup.py # Setup configuration
├── Dockerfile # Docker configuration
└── README.md # This fileTroubleshooting
Tool not found errors
If you get errors about tools not being found:
Run the
check_toolscommand to see which tools are installedInstall missing tools following the installation instructions above
Ensure the tools are in your system PATH
Permission errors
If you get permission errors when running audit tools:
Ensure the contract files are readable
Check that audit tools have proper execution permissions
Large contracts timing out
For large contracts or complex analysis:
Use
exclude_detectorswith Slither to skip certain checksRun pattern analysis first for a quick overview
License
Apache-2.0
Contributing
Contributions are welcome! Please feel free to submit issues or pull requests.
Security
This tool is for educational and professional security auditing purposes. Always:
Verify audit results manually
Use multiple tools for comprehensive analysis
Follow secure development best practices
Never rely solely on automated tools for security guarantees
This server cannot be installed
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
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/italoag/farofino-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server