We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/gokulapap/bugbounty-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•315 B
"""
BugBounty MCP Server
A comprehensive Model Context Protocol server for bug bounty hunting
and web application penetration testing.
"""
__version__ = "1.0.0"
__author__ = "Gokul"
__email__ = "apgokul008@gmail.com"
from .server import BugBountyMCPServer
from .tools import *
__all__ = ["BugBountyMCPServer"]