MCP server for maigret, a powerful OSINT tool that collects user account information from various public sources. This server provides tools for searching usernames across social networks and analyzing URLs.
Claude Desktop config.json'a ekle
{
"mcpServers": {
"burtthecoder-mcp-maigret": {
"command": "node",
"args": [
"~/.mcp/mcp-maigret/index.js"
]
}
}
} Kaynak kodu al ve yerel olarak çalıştır
git clone https://github.com/BurtTheCoder/mcp-maigret.git ~/.mcp/mcp-maigret
cd ~/.mcp/mcp-maigret A Model Context Protocol (MCP) server for maigret, a powerful OSINT tool that collects user account information from various public sources. This server provides tools for searching usernames across social networks and analyzing URLs. It is designed to integrate seamlessly with MCP-compatible applications like Claude Desktop.
This tool is designed for legitimate OSINT research purposes. Please:
This server implements several security measures to prevent command injection attacks:
execFile() instead of exec() to prevent shell interpolationIf you discover a security vulnerability, please report it by opening an issue or contacting the maintainers directly. We take security seriously and will respond promptly.
To install Maigret for Claude Desktop automatically via Smithery:
npx -y @smithery/cli install mcp-maigret --client claude
Install Docker:
Install the server globally via npm:
npm install -g mcp-maigret
mkdir -p /path/to/reports/directory
{
"mcpServers": {
"maigret": {
"command": "mcp-maigret",
"env": {
"MAIGRET_REPORTS_DIR": "/path/to/reports/directory"
}
}
}
}
Configuration file location:
~/Library/Application Support/Claude/claude_desktop_config.json%APPDATA%\Claude\claude_desktop_config.jsonIf you prefer to run from source or need to modify the code:
git clone <repository_url>
cd mcp-maigret
npm install
npm run build
{
"mcpServers": {
"maigret": {
"command": "node",
"args": ["/absolute/path/to/mcp-maigret/build/index.js"],
"env": {
"MAIGRET_REPORTS_DIR": "/path/to/reports/directory"
}
}
}
}
search_usernameusername (required): Username to search for (alphanumeric, underscores, hyphens, periods only; max 100 chars)format (optional, default: “pdf”): Output format (txt, html, pdf, json, csv, xmind)use_all_sites (optional, default: false): Use all available sites instead of top 500tags (optional): Array of tags to filter sites (alphanumeric, underscores, hyphens only)Example:
{
"username": "test_user123",
"format": "html",
"use_all_sites": false,
"tags": ["photo"]
}
parse_urlurl (required): URL to analyzeformat (optional, default: “pdf”): Output format (txt, html, pdf, json, csv, xmind)Example:
{
"url": "https://example.com/profile",
"format": "txt"
}
docker --version
docker ps
sudo usermod -aG docker $USERVerify the reports directory:
ls -la /path/to/reports/directoryCommon configuration mistakes:
After fixing any issues:
git checkout -b feature/amazing-feature)git commit -m 'Add amazing feature')git push origin feature/amazing-feature)This project is licensed under the MIT License - see the LICENSE file for details.
A Model Context Protocol server for Ghidra that enables LLMs to autonomously reverse engineer applications. Provides tools for decompiling binaries, renaming methods and data, and listing methods, classes, imports, and exports.
MCP server for IDA Pro, allowing you to perform binary analysis with AI assistants. This plugin implement decompilation, disassembly and allows you to generate malware analysis reports automatically.
JADX-AI-MCP is a plugin and MCP Server for the JADX decompiler that integrates directly with Model Context Protocol (MCP) to provide live reverse engineering support with LLMs like Claude.
Beelzebub is a honeypot framework that lets you build honeypot tools using MCP. Its purpose is to detect prompt injection or malicious agent behavior. The underlying idea is to provide the agent with tools it would never use in its normal work.
vet-mcp checks open source packages—like those suggested by AI coding tools—for vulnerabilities and malicious code. It supports npm and PyPI, and runs locally via Docker or as a standalone binary for fast, automated vetting.
Allow AI agents to scan code for security vulnerabilites using Semgrep.