We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/timowhite88/Farnsworth'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
__init__.py•474 B
"""
Farnsworth DNS Management Package
"Good news, everyone! I can now control the very fabric of the internet!"
Multi-provider DNS management including MX records and SSL certificates.
"""
from farnsworth.dns.dns_manager import (
DNSManager,
DNSRecord,
DNSRecordType,
)
from farnsworth.dns.ssl_certificates import (
SSLManager,
Certificate,
)
__all__ = [
"DNSManager",
"DNSRecord",
"DNSRecordType",
"SSLManager",
"Certificate",
]