← WebMCP Directory

Tool tree

webscore.now

liveDeveloper Tools
https://webscore.now/
WebScore is a free website scanner & checker — scan any site for SEO, performance, security and accessibility issues in 60 seconds, with step-by-step fixes.
Explore capabilities
check_sslanswer

Check a domain's HTTPS certificate: issuer, validity window, days until expiry, the hostnames it covers, the negotiated TLS version, and a letter grade with any problems found. Use this to answer whether a site's certificate is valid, who issued it, or when it expires.

View tool JSON
{
  "name": "check_ssl",
  "kind": "answer",
  "impl": "imperative",
  "description": "Check a domain's HTTPS certificate: issuer, validity window, days until expiry, the hostnames it covers, the negotiated TLS version, and a letter grade with any problems found. Use this to answer whether a site's certificate is valid, who issued it, or when it expires.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "domain": {
        "type": "string",
        "description": "The domain to check, e.g. example.com (a full URL is also accepted)."
      }
    },
    "required": [
      "domain"
    ]
  },
  "page": "/"
}
check_email_authanswer

Look up a domain's email authentication records — SPF, DKIM and DMARC — and report what is configured, what is missing, and how exposed the domain is to spoofing. Use this to answer whether a domain is protected against someone sending mail as it.

View tool JSON
{
  "name": "check_email_auth",
  "kind": "answer",
  "impl": "imperative",
  "description": "Look up a domain's email authentication records — SPF, DKIM and DMARC — and report what is configured, what is missing, and how exposed the domain is to spoofing. Use this to answer whether a domain is protected against someone sending mail as it.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "domain": {
        "type": "string",
        "description": "The domain to check, e.g. example.com (a full URL is also accepted)."
      }
    },
    "required": [
      "domain"
    ]
  },
  "page": "/"
}
get_page_metadataanswer

Fetch a web page and return the metadata a search engine or social network reads from it: title, meta description, canonical URL, Open Graph and Twitter card tags, and any JSON-LD structured data. Use this to inspect how a page will appear in search results or when shared as a link.

View tool JSON
{
  "name": "get_page_metadata",
  "kind": "answer",
  "impl": "imperative",
  "description": "Fetch a web page and return the metadata a search engine or social network reads from it: title, meta description, canonical URL, Open Graph and Twitter card tags, and any JSON-LD structured data. Use this to inspect how a page will appear in search results or when shared as a link.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "url": {
        "type": "string",
        "description": "The full URL of the page to inspect, e.g. https://example.com/pricing"
      }
    },
    "required": [
      "url"
    ]
  },
  "page": "/"
}
start_website_scanact

Start a full WebScore audit of a website — Performance, SEO, Accessibility, Security and Best Practices — by opening the scan flow in this browser tab with the URL already filled in. The scan runs in the visitor's own WebScore account and takes about a minute; a free account is required, so this navigates to sign-in first if the visitor is signed out. Use this when someone wants a complete audit rather than one of the single checks above.

View tool JSON
{
  "name": "start_website_scan",
  "kind": "act",
  "impl": "imperative",
  "description": "Start a full WebScore audit of a website — Performance, SEO, Accessibility, Security and Best Practices — by opening the scan flow in this browser tab with the URL already filled in. The scan runs in the visitor's own WebScore account and takes about a minute; a free account is required, so this navigates to sign-in first if the visitor is signed out. Use this when someone wants a complete audit rather than one of the single checks above.",
  "inputSchema": {
    "type": "object",
    "properties": {
      "url": {
        "type": "string",
        "description": "The website to audit, e.g. example.com or https://example.com"
      }
    },
    "required": [
      "url"
    ]
  },
  "page": "/"
}