{
  "$schema": "https://modelcontextprotocol.io/schemas/server-card/draft-sep-1649.json",
  "serverInfo": {
    "name": "yourbusinessconsultant.ai",
    "title": "YourBusinessConsultant.ai",
    "version": "1.0.0",
    "description": "AI consulting services site exposing site actions to AI agents. Contact, glossary lookup, service finder, and blog search are available as browser-native tools via WebMCP.",
    "vendor": {
      "name": "YourBusinessConsultant.ai",
      "url": "https://yourbusinessconsultant.ai"
    },
    "license": "proprietary",
    "contact": "hello@yourbusinessconsultant.ai"
  },
  "transport": {
    "type": "webmcp",
    "description": "Browser-native WebMCP transport via navigator.modelContext.provideContext(). Tools are registered client-side on every page load.",
    "endpoint": "https://yourbusinessconsultant.ai/static/js/webmcp.js",
    "spec": "https://webmachinelearning.github.io/webmcp/"
  },
  "capabilities": {
    "tools": {
      "listChanged": false,
      "definitions": [
        {
          "name": "contact_sales",
          "description": "Submit a contact inquiry for AI consulting, process automation, AI agent development, application development, AI process mapping, or business intelligence automation services. User receives a response within 24 hours via email.",
          "inputSchema": {
            "type": "object",
            "properties": {
              "name": { "type": "string" },
              "email": { "type": "string", "format": "email" },
              "company": { "type": "string" },
              "phone": { "type": "string" },
              "service": { "type": "string" },
              "message": { "type": "string", "minLength": 20 }
            },
            "required": ["name", "email", "message"]
          }
        },
        {
          "name": "lookup_glossary_term",
          "description": "Look up the definition of an AI or business term from the YourBusinessConsultant.ai AI Glossary. Returns a direct URL to the glossary entry.",
          "inputSchema": {
            "type": "object",
            "properties": { "term": { "type": "string" } },
            "required": ["term"]
          }
        },
        {
          "name": "find_service_in_city",
          "description": "Find the canonical URL for a specific AI consulting service in a specific Arizona city. Covers 6 services across 13 Arizona cities.",
          "inputSchema": {
            "type": "object",
            "properties": {
              "service": { "type": "string" },
              "city": { "type": "string" }
            },
            "required": ["service", "city"]
          }
        },
        {
          "name": "list_blog_posts",
          "description": "List blog posts on YourBusinessConsultant.ai with titles, URLs, publication dates, and excerpts. Optional topic filter.",
          "inputSchema": {
            "type": "object",
            "properties": { "topic": { "type": "string" } }
          }
        }
      ]
    },
    "resources": { "listChanged": false },
    "prompts": { "listChanged": false },
    "logging": {}
  },
  "instructions": "These tools are exposed client-side via WebMCP. An AI agent running in a Chrome browser (or any browser with navigator.modelContext support) can call these tools directly. For server-side integration, see the /.well-known/ai-plugin.json manifest.",
  "meta": {
    "siteUrl": "https://yourbusinessconsultant.ai",
    "agentSkills": "https://yourbusinessconsultant.ai/.well-known/agent-skills/index.json",
    "aiPluginManifest": "https://yourbusinessconsultant.ai/.well-known/ai-plugin.json",
    "llmsTxt": "https://yourbusinessconsultant.ai/llms.txt"
  }
}