get_contact_information
Retrieve configured contact details for domain purchases and ICANN registration to ensure accurate and compliant domain management.
Instructions
Retrieve the currently configured contact information that will be used for domain purchases and ICANN registration.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/sherlock_mcp/server.py:94-100 (handler)MCP tool handler function for 'get_contact_information'. Decorated with @mcp.tool() for registration. Retrieves contact info by calling Sherlock._get_contact_information() via a lazy instance.@mcp.tool() async def get_contact_information(): """ Retrieve the currently configured contact information that will be used for domain purchases and ICANN registration. """ return handle_response(get_sherlock()._get_contact_information())