We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/skutry/credential-free'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•466 B
"""
credential-free - MCP server and CLI tool for secret detection
Detects API keys, tokens, and credentials with 69 patterns across cloud, AI, payment, auth, and database services.
"""
import logging
__version__ = "1.0.0"
# Configure logging once for the entire package
logging.basicConfig(
level=logging.INFO,
format='%(asctime)s - %(name)s - %(levelname)s - %(message)s',
handlers=[logging.StreamHandler()] # stderr, not stdout (MCP compliance)
)