← All WebMCP sites

automatelab.tech

Developer Toolshttps://automatelab.tech/listed as of 2026-08-01
AutomateLab's free AI-SEO and automation tools (AI SEO checker, AI Overview eligibility, FAQ schema audit, GPTBot/robots helper, llms.txt validator, n8n cost calculator and workflow validator, Zapier/Make/n8n pricing) plus blog and dataset search — each exposed to agents as a WebMCP tool.
See Ora's auditWe loaded this site in a real browser and scored its tools.

Tools

audit_ai_seoactimperative/tools/ai-seo-checker/
Audit a URL for AI-SEO / AEO / GEO readiness across 39 checks (crawlability, structured data, content, AI readability, technical) and return the score, grade, and per-category breakdown.
Input schema
{
  "type": "object",
  "properties": {
    "url": {
      "type": "string",
      "description": "Full URL to audit, including https://"
    }
  },
  "required": [
    "url"
  ]
}
score_ai_overview_eligibilityactimperative/tools/ai-overview-checker/
Score whether a URL is eligible to appear in / be cited by Google AI Overviews (15 signals across crawl access, answer extractability, and trust). Returns the score and verdict.
Input schema
{
  "type": "object",
  "properties": {
    "url": {
      "type": "string",
      "description": "Full URL to check, including https://"
    }
  },
  "required": [
    "url"
  ]
}
get_faqpage_schema_templateanswerimperative/tools/faq-schema-audit/
Return a valid, copy-paste FAQPage JSON-LD (schema.org) template that makes Q&A content eligible for rich results and AI-answer citation.
Input schema
{
  "type": "object",
  "properties": {},
  "required": []
}
get_ai_crawler_robots_rulesanswerimperative/tools/gptbot-check/
Return robots.txt rules that allow the major AI crawlers (GPTBot, OAI-SearchBot, ChatGPT-User, ClaudeBot, PerplexityBot, Google-Extended) to access a site.
Input schema
{
  "type": "object",
  "properties": {},
  "required": []
}
get_llms_txt_templateanswerimperative/tools/llms-txt-validator/
Return a spec-compliant example llms.txt file (the curated Markdown entry-point file AI crawlers look for at a site root).
Input schema
{
  "type": "object",
  "properties": {},
  "required": []
}
estimate_n8n_costactimperative/tools/n8n-cost-calculator/
Estimate monthly cost of n8n Cloud vs self-hosting for a given workload, plus the break-even point. Returns a Markdown summary.
Input schema
{
  "type": "object",
  "properties": {
    "execs": {
      "type": "number",
      "description": "Workflow executions per month"
    },
    "workflows": {
      "type": "number",
      "description": "Number of active workflows"
    },
    "steps": {
      "type": "number",
      "description": "Average steps (nodes) per workflow"
    },
    "rate": {
      "type": "number",
      "description": "Your ops time hourly rate in USD"
    },
    "queue_mode": {
      "type": "string",
      "description": "Force queue mode: auto, on, or off",
      "enum": [
        "auto",
        "on",
        "off"
      ]
    }
  },
  "required": []
}
validate_n8n_workflowactimperative/tools/n8n-workflow-validator/
Validate an n8n workflow JSON for structural issues (missing connections, unset credentials, deprecated nodes, and similar) and return the issues found.
Input schema
{
  "type": "object",
  "properties": {
    "workflow_json": {
      "type": "string",
      "description": "The full n8n workflow JSON to validate"
    }
  },
  "required": [
    "workflow_json"
  ]
}
compare_automation_pricinganswerimperative/tools/zapier-vs-make-vs-n8n-pricing/
Compare monthly pricing of Zapier vs Make vs n8n for a given task/operation volume and return a Markdown breakdown of which is cheapest.
Input schema
{
  "type": "object",
  "properties": {
    "tasks": {
      "type": "number",
      "description": "Monthly task/operation volume"
    },
    "steps": {
      "type": "number",
      "description": "Steps per task/scenario"
    },
    "workflows": {
      "type": "number",
      "description": "Number of active workflows/zaps"
    },
    "billing": {
      "type": "string",
      "description": "Billing period",
      "enum": [
        "annual",
        "monthly"
      ]
    },
    "premium": {
      "type": "string",
      "description": "Need premium Zapier connectors?",
      "enum": [
        "yes",
        "no"
      ]
    }
  },
  "required": []
}
search_bloganswerimperative/blog/
Search the AutomateLab blog (articles on AI automation, n8n, Make, Zapier, AI agents, and AI coding tools). Opens site search for the given query.
Input schema
{
  "type": "object",
  "properties": {
    "query": {
      "type": "string",
      "description": "What to search the blog for"
    }
  },
  "required": [
    "query"
  ]
}
search_automation_errorsanswerimperative/products/datasets/automation-error-index/
Search the AutomateLab automation error index (n8n, Make, Zapier, Cursor, Claude Code, Power Automate, UiPath) by error text, code, or platform; returns how many entries match.
Input schema
{
  "type": "object",
  "properties": {
    "query": {
      "type": "string",
      "description": "Error text, code, or platform to search for"
    }
  },
  "required": [
    "query"
  ]
}
Listings are sourced from public community registries and shown as reported.