{
  "mcpVersion": "1.0",
  "name": "Able Safety Consulting",
  "description": "OSHA-approved construction safety training courses and site safety management services in New York",
  "contact": "info@ablesafety.com",
  "tools": [
    {
      "name": "course-search",
      "description": "Search for construction safety training courses including OSHA, NYC DOB, EPA RRP, and Site Safety Training (SST) courses",
      "inputSchema": {
        "type": "object",
        "properties": {
          "search": {
            "type": "string",
            "description": "Search terms for courses (e.g. 'OSHA 30', 'scaffold safety', 'SST card', 'flagger')"
          }
        },
        "required": ["search"]
      }
    },
    {
      "name": "site-search",
      "description": "Search all content on the Able Safety Consulting website",
      "inputSchema": {
        "type": "object",
        "properties": {
          "search": {
            "type": "string",
            "description": "Search query"
          }
        },
        "required": ["search"]
      }
    },
    {
      "name": "contact",
      "description": "Send a contact message or inquiry to Able Safety Consulting",
      "inputSchema": {
        "type": "object",
        "properties": {
          "name": {
            "type": "string",
            "description": "Full name of the person sending the message"
          },
          "email": {
            "type": "string",
            "format": "email",
            "description": "Email address for reply"
          },
          "phone": {
            "type": "string",
            "description": "Phone number"
          },
          "message": {
            "type": "string",
            "description": "The message or inquiry content"
          }
        },
        "required": ["name", "email", "phone", "message"]
      }
    }
  ]
}
