We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/keides2/coverity-connect-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•522 B
"""
Coverity Connect MCP Server
A Model Context Protocol server for Black Duck Coverity Connect static analysis platform.
Provides seamless integration between AI assistants and Coverity through natural language commands.
"""
__version__ = "1.0.0"
__author__ = "Your Name"
__email__ = "your.email@example.com"
__description__ = "Model Context Protocol server for Black Duck Coverity Connect static analysis platform"
from .main import create_server, run_server
__all__ = ["create_server", "run_server", "__version__"]