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) }] };

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