Skip to main content
Glama
CloudWaddie

OSINT MCP Server

otx_indicator_details

Retrieve detailed threat intelligence for IP addresses, domains, or hostnames from AlienVault OTX to analyze security indicators and identify potential threats.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
typeYesType of indicator
indicatorYesIndicator to lookup (IP, domain, etc.)

Implementation Reference

  • The implementation of the 'otx_indicator_details' tool, which uses the otxClient to fetch indicator details.
    server.tool(
      "otx_indicator_details",
      {
        type: z.enum(["IPv4", "domain", "hostname"]).describe("Type of indicator"),
        indicator: z.string().describe("Indicator to lookup (IP, domain, etc.)"),
      },
      async ({ type, indicator }) => {
        const result = await otxClient.getIndicatorDetails(type, indicator);
        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