{
  "schema_version": "1.0",
  "name_for_model": "ridgeseo",
  "name_for_human": "RidgeSEO",
  "description_for_model": "RidgeSEO is an SEO agency based in Santiago, Chile, serving clients in Chile, the US, and New Zealand. Use these tools to: request SEO audits, get page SEO metadata, navigate service pages, and retrieve contact info.",
  "description_for_human": "Interact with RidgeSEO — request SEO audits, explore services, and get expert contact info.",
  "tools": [
    {
      "name": "request_seo_audit",
      "description": "Submit a contact form to request a free initial SEO audit from RidgeSEO. Required: name, email, website URL. Optional: phone, country.",
      "input_schema": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "description": "Full name"
          },
          "email": {
            "type": "string",
            "format": "email",
            "description": "Email address"
          },
          "website": {
            "type": "string",
            "format": "uri",
            "description": "Website URL to audit"
          },
          "phone": {
            "type": "string",
            "description": "Phone with country code (optional)"
          },
          "country": {
            "type": "string",
            "description": "Country of the business (optional)"
          }
        },
        "required": [
          "name",
          "email",
          "website"
        ]
      }
    },
    {
      "name": "get_page_seo_info",
      "description": "Returns SEO metadata of the current page: title, description, canonical, hreflang, and structured data.",
      "input_schema": {
        "type": "object",
        "properties": {},
        "required": []
      }
    },
    {
      "name": "navigate_to_service",
      "description": "Navigate to a RidgeSEO service page.",
      "input_schema": {
        "type": "object",
        "properties": {
          "service": {
            "type": "string",
            "enum": [
              "technical-seo",
              "local-seo",
              "link-building",
              "cro",
              "geo-llm",
              "seo-ecommerce",
              "seo-international"
            ]
          }
        },
        "required": [
          "service"
        ]
      }
    },
    {
      "name": "get_contact_info",
      "description": "Returns RidgeSEO contact info, services, markets, and business hours.",
      "input_schema": {
        "type": "object",
        "properties": {},
        "required": []
      }
    }
  ],
  "prompts": [
    {
      "name": "seo_audit_request",
      "description": "Generate a structured SEO audit request",
      "arguments": [
        {
          "name": "website_url",
          "required": true
        },
        {
          "name": "main_goal",
          "required": false
        }
      ]
    },
    {
      "name": "seo_diagnosis",
      "description": "Run a quick SEO diagnosis of the current page",
      "arguments": []
    }
  ],
  "resources": [
    {
      "name": "page_structured_data",
      "description": "All Schema.org structured data on the current page",
      "uri": "ridgeseo://current-page/structured-data",
      "mimeType": "application/json"
    },
    {
      "name": "site_llms_txt",
      "description": "RidgeSEO LLMs.txt — site context for AI models",
      "uri": "ridgeseo://site/llms-txt",
      "mimeType": "text/plain"
    }
  ]
}