We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/jolfr/commit-helper-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•389 B
"""
Configuration Management for Commit Helper MCP
This package provides centralized configuration handling with validation,
type safety, and environment-specific overrides.
"""
from .settings import Settings, get_settings
from .repository_config import RepositoryConfig
from .plugin_config import PluginConfig
__all__ = ["Settings", "get_settings", "RepositoryConfig", "PluginConfig"]