Skip to main content
Glama
fitzypopper

osint-mcp-server

by fitzypopper

Email Security

email_security
Read-onlyIdempotent

Check a domain's SPF, DMARC, and DKIM records to assess email-authentication setup and identify spoofing risks.

Instructions

Analyze a domain's SPF/DMARC/DKIM email-authentication and spoofing risk.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
domainYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4.1/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, covering safety. The description adds useful context about the specific checks performed (SPF/DMARC/DKIM and spoofing risk), which goes beyond the annotation. No contradictions.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, front-loaded sentence with no redundant words. It effectively communicates the tool's core functionality.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool has a single simple parameter, annotations cover behavioral safety, and an output schema exists (so return format need not be described). The description sufficiently covers what the tool does and the input, leaving no critical gaps for an agent to call it correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

With schema description coverage at 0%, the description is the only source of parameter meaning. It states 'domain' but does not specify format (e.g., with/without protocol, subdomain inclusion). The meaning is clear enough for a single string parameter, but it could be more explicit.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose with a specific verb ('Analyze') and resource ('domain's SPF/DMARC/DKIM email-authentication and spoofing risk'). It distinguishes itself from sibling tools like dns_lookup_all or whois_domain by focusing on security analysis rather than raw record retrieval.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No explicit guidance on when to use this tool versus alternatives. The description implies it is for email security analysis, but does not mention exclusions or direct comparisons to siblings (e.g., dns_lookup for raw SPF records). An agent would infer usage but without explicit routing.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.