{
  "$schema": "https://modelcontextprotocol.io/schemas/2025-10-30/server-descriptor.json",
  "name": "simulator-company",
  "displayName": "Simulator.Company",
  "description": "Public Model Context Protocol surface for the Simulator.Company marketing site. Exposes the FAQ assistant, license tariffs and email subscription as MCP tools. Authentication is not required for read-only tools.",
  "version": "1.0.0",
  "vendor": {
    "name": "Corezoid Inc.",
    "url": "https://simulator.company"
  },
  "transports": [
    {
      "type": "streamable-http",
      "url": "https://simulator-chat.makarichev-dmitry.workers.dev/mcp",
      "auth": "none",
      "preferred": true
    }
  ],
  "tools": [
    {
      "name": "ask_simulator",
      "description": "Ask the Simulator.Company assistant any question about the platform, pricing, deployment, security, or the Smart Company journey. Returns a grounded answer with optional citations.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "question": {
            "type": "string",
            "description": "Plain-English question."
          },
          "locale": {
            "type": "string",
            "default": "en",
            "description": "Reply locale. Currently only 'en' is supported."
          }
        },
        "required": ["question"]
      }
    },
    {
      "name": "list_license_tariffs",
      "description": "Returns the live list of license tariffs (tier name, RPS, storage, monthly price).",
      "inputSchema": {
        "type": "object",
        "properties": {}
      }
    },
    {
      "name": "subscribe_email",
      "description": "Subscribe an email address to the Simulator.Company newsletter.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "email": {
            "type": "string",
            "format": "email"
          },
          "consent": {
            "type": "boolean",
            "description": "Must be true. Confirms the address owner consented to receive marketing email."
          }
        },
        "required": ["email", "consent"]
      }
    }
  ],
  "resources": [
    {
      "name": "site_brief",
      "uri": "https://simulator.company/llms.txt",
      "description": "Plain-language site brief.",
      "mimeType": "text/plain"
    },
    {
      "name": "site_brief_full",
      "uri": "https://simulator.company/llms-full.txt",
      "description": "Full LLM-friendly corpus.",
      "mimeType": "text/plain"
    },
    {
      "name": "sitemap",
      "uri": "https://simulator.company/sitemap.xml",
      "description": "Canonical URL sitemap.",
      "mimeType": "application/xml"
    },
    {
      "name": "plugin_skills",
      "uri": "https://simulator.company/.well-known/skills/index.json",
      "description": "Claude Code / Codex plugin skills index — 7 specialist skills for the Simulator REST API.",
      "mimeType": "application/json"
    }
  ],
  "prompts": [],
  "documentationUrl": "https://simulator.company/llms.txt",
  "termsOfServiceUrl": "https://simulator.company/terms"
}
