{"id":27521183,"url":"https://github.com/mytechnotalent/malwarebazaar_mcp","last_synced_at":"2025-06-21T21:41:23.267Z","repository":{"id":287562852,"uuid":"965127478","full_name":"mytechnotalent/MalwareBazaar_MCP","owner":"mytechnotalent","description":"An AI-driven MCP server that autonomously interfaces with Malware Bazaar, delivering real-time threat intel and sample metadata for authorized cybersecurity research workflows.","archived":false,"fork":false,"pushed_at":"2025-05-19T18:22:17.000Z","size":72,"stargazers_count":12,"open_issues_count":0,"forks_count":5,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-06-12T17:50:46.558Z","etag":null,"topics":["agentic","agentic-ai","agentic-workflow","ai","malware","malware-analysis","malware-detection","malware-research","malware-samples","mcp","mcp-client","mcp-server","mcp-tools","reverse-engineering"],"latest_commit_sha":null,"homepage":"","language":"Python","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mytechnotalent.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2025-04-12T13:25:45.000Z","updated_at":"2025-06-10T23:32:56.000Z","dependencies_parsed_at":"2025-06-12T17:39:08.321Z","dependency_job_id":"ec03313f-64c5-4ba0-a9ee-bc361dea9807","html_url":"https://github.com/mytechnotalent/MalwareBazaar_MCP","commit_stats":null,"previous_names":["mytechnotalent/malwarebazaar_mcp"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/mytechnotalent/MalwareBazaar_MCP","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mytechnotalent%2FMalwareBazaar_MCP","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mytechnotalent%2FMalwareBazaar_MCP/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mytechnotalent%2FMalwareBazaar_MCP/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mytechnotalent%2FMalwareBazaar_MCP/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mytechnotalent","download_url":"https://codeload.github.com/mytechnotalent/MalwareBazaar_MCP/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mytechnotalent%2FMalwareBazaar_MCP/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":261199991,"owners_count":23123917,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["agentic","agentic-ai","agentic-workflow","ai","malware","malware-analysis","malware-detection","malware-research","malware-samples","mcp","mcp-client","mcp-server","mcp-tools","reverse-engineering"],"created_at":"2025-04-18T07:59:27.067Z","updated_at":"2025-06-21T21:41:18.243Z","avatar_url":"https://github.com/mytechnotalent.png","language":"Python","funding_links":[],"categories":[],"sub_categories":[],"readme":"# MalwareBazaar_MCP\nAn AI-driven MCP server that autonomously interfaces with Malware Bazaar, delivering real-time threat intel and sample metadata for authorized cybersecurity research workflows.\n\n\u003cbr\u003e\n\n## MCP Tools\n#### `get_recent`: Get up to 10 most recent samples from MalwareBazaar.\n#### `get_info`: Get detailed metadata about a specific malware sample.\n#### `get_file`: Download a malware sample from MalwareBazaar.\n#### `get_taginfo`: Get malware samples associated with a specific tag.\n\n\u003cbr\u003e\n\n## Step 1: Create a MalwareBazaar APIKEY\nhttps://auth.abuse.ch/user/me\n\n## Step 2: Create `.env`\n```bash\nMALWAREBAZAAR_API_KEY=\u003cAPIKEY\u003e\n```\n\n## Step 3a: Create Virtual Env \u0026 Install Requirements - MAC/Linux\n```bash\ncurl -LsSf https://astral.sh/uv/install.sh | sh\ncd MalwareBazaar_MCP\nuv init .\nuv venv\nsource .venv/bin/activate\nuv pip install -r requirements.txt\n```\n\n## Step 3b: Create Virtual Env \u0026 Install Requirements - Windows\n```bash\npowershell -ExecutionPolicy ByPass -c \"irm https://astral.sh/uv/install.ps1 | iex\"\ncd MalwareBazaar_MCP\nuv init .\nuv venv\n.venv\\Scripts\\activate\nuv pip install -r requirements.txt\n```\n\n## Step 4a: Add Config to the MCP Client - MAC/Linux\n```bash\n{\n    \"mcpServers\": {\n        \"malwarebazaar\": {\n            \"description\": \"Malware Bazaar MCP Server\",\n            \"command\": \"/Users/XXX/.local/bin/uv\",\n            \"args\": [\n                \"--directory\",\n                \"/Users/XXX/Documents/MalwareBazaar_MCP\",\n                \"run\",\n                \"malwarebazaar_mcp.py\"\n            ]\n        }\n    }\n}\n```\n\n## Step 4b: Add Config to the MCP Client - Windows\n```bash\n{\n    \"mcpServers\": {\n        \"malwarebazaar\": {\n            \"description\": \"Malware Bazaar MCP Server\",\n            \"command\": \"uv\",\n            \"args\": [\n                \"--directory\",\n                \"C:\\Users\\XXX\\Document\\MalwareBazaar_MCP\",\n                \"run\",\n                \"malwarebazaar_mcp.py\"\n            ]\n        }\n    }\n}\n```\n\n## Step 5: Run MCP Server\n```bash\nuv run malwarebazaar_mcp.py\n```\n\n## Step 6: Run MCP Client \u0026 Query\n```\nHelp me understnad the latest hash from Malware Bazaar.\n```\n\n## Step 7: Run Tests\n```\npython -m unittest discover -s tests\n\nuv pip install coverage==7.8.0\ncoverage run --branch -m unittest discover -s tests\ncoverage report -m\ncoverage html\nopen htmlcov/index.html  # MAC\nxdg-open htmlcov/index.html  # Linux\nstart htmlcov\\index.html  # Windows\ncoverage erase\n```\n\n\u003cbr\u003e\n\n## License\n[Apache License, Version 2.0](https://www.apache.org/licenses/LICENSE-2.0)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmytechnotalent%2Fmalwarebazaar_mcp","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmytechnotalent%2Fmalwarebazaar_mcp","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmytechnotalent%2Fmalwarebazaar_mcp/lists"}