Skip to main content
Glama
OrtaMarco

domain-security-mcp-server

by OrtaMarco

DKIM Record Check

dkim_check
Read-onlyIdempotent

Verify DKIM records for a domain by probing selectors, confirming email authentication configuration and key types.

Instructions

Look up DKIM public keys at ._domainkey.. Because DKIM selectors are arbitrary and undiscoverable, you should pass the selector(s) your mail provider uses for a definitive answer; otherwise a curated list of common selectors is probed and a miss is inconclusive.

Args:

  • domain (string): the domain to check.

  • selectors (string[], optional): DKIM selectors to probe.

  • response_format ('markdown' | 'json'): output format (default 'markdown').

Returns: { any_found, probed_selectors, selectors[{selector, found, record, key_type}], findings[] }.

Examples:

  • "Does acme.com publish a DKIM key for selector 'google'?" -> dkim_check(domain="acme.com", selectors=["google"])

  • "Find any DKIM keys for acme.com" -> dkim_check(domain="acme.com")

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
domainYesDomain to check, e.g. 'example.com'.
selectorsNoDKIM selectors to check (e.g. ['google']). If omitted, common provider selectors are probed — absence is then inconclusive.
response_formatNoOutput format: 'markdown' for a human-readable summary (default) or 'json' for the full structured payload.markdown

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
domainYes
any_foundYes
probed_selectorsYes
selectorsYes
findingsYes
Behavior4/5

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

Annotations already indicate readOnlyHint, idempotentHint, and openWorldHint. The description adds critical behavioral context: the probing of common selectors when none are provided and the inconclusiveness of a miss. It also describes the return structure.

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 about 100 words, well-structured with bullet points for args and returns, and front-loaded with the core purpose. No unnecessary content.

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?

Given the moderate complexity (3 parameters, output schema present), the description covers all necessary aspects: purpose, behavior, parameter details, return format, and examples. No gaps.

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

Parameters4/5

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

The schema provides full descriptions for all three parameters (100% coverage), so baseline is 3. The description adds value by explaining the probe behavior for selectors and noting the default for response_format, making the semantics clearer than schema alone.

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 it looks up DKIM public keys with the specific query pattern <selector>._domainkey.<domain>. It distinguishes itself from siblings like dmarc_check and spf_check by focusing solely on DKIM.

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

Usage Guidelines4/5

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

It explains when to use the tool—to check DKIM—and provides guidance on selectors: users should pass specific selectors for a definitive answer, and if omitted, a miss is inconclusive. It doesn't explicitly compare to sibling tools, but the sibling context makes it clear.

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

Install Server

Other Tools

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/OrtaMarco/domain-security-mcp-server'

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