get_contact_information
Retrieve configured contact details for domain purchases and ICANN registration to ensure accurate ownership information.
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)The handler function for the 'get_contact_information' tool, registered via @mcp.tool(). It retrieves the contact information using the Sherlock instance and handles the response.@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())