Skip to main content
Glama
NsLookup-io

nslookup.io MCP Server

by NsLookup-io

bimi_vmc

Verify domain BIMI and VMC records to authenticate email senders and display brand logos in inboxes. Checks DNS status, certificate details, and trademark information.

Instructions

Check BIMI (Brand Indicators for Message Identification) and VMC (Verified Mark Certificate) for a domain. Returns BIMI DNS record status, VMC certificate details, logo URL, trademark info, and expiry.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
domainYesDomain name to check BIMI/VMC for (e.g. google.com)

Implementation Reference

  • The handler for the 'bimi_vmc' tool, which performs an API call to /v1/vmc/check to retrieve BIMI/VMC information for a domain.
    async ({ domain }) => {
      try {
        const result = await apiPost(
          "/v1/vmc/check",
          { domain },
          { prefix: "/portal-api", timeout: 15000 }
        );
        return { content: [{ type: "text", text: formatJson(result) }] };
      } catch (error) {
        return {
          content: [
            {
              type: "text",
              text: `Error: ${error instanceof Error ? error.message : String(error)}`,
            },
          ],
          isError: true,
        };
      }
    }
  • src/tools.ts:243-256 (registration)
    Registration of the 'bimi_vmc' tool with its schema definition and handler.
    server.tool(
      "bimi_vmc",
      "Check BIMI (Brand Indicators for Message Identification) and VMC (Verified Mark Certificate) for a domain. Returns BIMI DNS record status, VMC certificate details, logo URL, trademark info, and expiry.",
      {
        domain: z.string().describe("Domain name to check BIMI/VMC for (e.g. google.com)"),
      },
      async ({ domain }) => {
        try {
          const result = await apiPost(
            "/v1/vmc/check",
            { domain },
            { prefix: "/portal-api", timeout: 15000 }
          );
          return { content: [{ type: "text", text: formatJson(result) }] };
Behavior3/5

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

With no annotations provided, the description carries the full burden of behavioral disclosure. It describes what the tool returns (BIMI DNS record status, VMC certificate details, etc.), which is helpful, but doesn't mention error handling, rate limits, authentication requirements, or whether it's a read-only operation. The description adds value but lacks comprehensive behavioral context.

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, well-structured sentence that efficiently conveys the tool's purpose and return values. It's front-loaded with the main action and provides specific details without unnecessary elaboration, making every word count.

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

Completeness3/5

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

Given the tool's moderate complexity (checking multiple verification aspects), no annotations, and no output schema, the description is adequate but incomplete. It specifies what information is returned but doesn't cover error cases, format of return values, or operational constraints. It meets minimum viability but leaves gaps in contextual understanding.

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?

Schema description coverage is 100%, so the schema already documents the single parameter 'domain' with an example. The description adds no additional parameter semantics beyond what's in the schema. With only one parameter, the baseline is 4, as minimal parameter explanation is needed.

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 specific action ('Check BIMI and VMC for a domain') and the resources involved (BIMI DNS record, VMC certificate, logo URL, trademark info, expiry). It distinguishes itself from sibling tools like dns_lookup or ssl_certificate by focusing specifically on BIMI/VMC verification rather than general DNS or SSL checks.

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?

The description implies usage context (checking BIMI/VMC for domains) but doesn't explicitly state when to use this tool versus alternatives like dns_record or ssl_certificate. No guidance is provided about prerequisites, exclusions, or specific scenarios where this tool is preferred over siblings.

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/NsLookup-io/nslookup-mcp'

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