Skip to main content
Glama

Bug Bounty MCP Server

by SlanyCukr
osint.py784 B
"""OSINT gathering workflow for comprehensive target intelligence.""" import logging from flask import request from src.rest_api_server.utils.registry import workflow logger = logging.getLogger(__name__) @workflow() def create_osint_workflow(): """Create OSINT gathering workflow.""" # Import here to avoid circular imports from src.rest_api_server.managers import BugBountyTarget, bugbounty_manager data = request.get_json() domain = data["domain"] logger.info(f"Creating OSINT workflow for {domain}") # Create bug bounty target target = BugBountyTarget(domain=domain) # Generate OSINT workflow workflow = bugbounty_manager.create_osint_workflow(target) logger.info(f"OSINT workflow created for {domain}") return workflow

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/SlanyCukr/bugbounty-mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server