Skip to main content
Glama
CloudWaddie

OSINT MCP Server

reverse_dns

Look up hostnames from IP addresses to identify domains associated with specific network endpoints for security research and intelligence gathering.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
ipYesIP address to lookup hostname for

Implementation Reference

  • The tool 'reverse_dns' is defined and registered directly in src/index.ts. It takes an 'ip' string as input and uses 'directDnsClient.reverse(ip)' to perform the lookup.
    server.tool(
      "reverse_dns",
      { ip: z.string().describe("IP address to lookup hostname for") },
      async ({ ip }) => {
        const result = await directDnsClient.reverse(ip);
        return {
          content: [{ type: "text", text: JSON.stringify(result, null, 2) }],
        };
      }

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/CloudWaddie/osint-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server