greynoise_ip_context
Check IP addresses in GreyNoise to identify internet background noise, benign activity, or malicious traffic for security research.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| ip | Yes | IP address to check context in GreyNoise |
Implementation Reference
- src/index.ts:266-275 (handler)Registration and handler implementation of the greynoise_ip_context tool.
server.tool( "greynoise_ip_context", { ip: z.string().describe("IP address to check context in GreyNoise") }, async ({ ip }) => { const result = await gnClient.getIpContext(ip); return { content: [{ type: "text", text: JSON.stringify(result, null, 2) }], }; } );