{
  "$schema": "https://modelcontextprotocol.io/schemas/draft/2025-06-18/server.json",
  "name": "cosmo-humanizing",
  "title": "Cosmo by Humanizing",
  "version": "1.0.0",
  "description": "Read-only MCP tools for Cosmo by Humanizing: product catalogue, pricing, company details and Markdown access to every page of cosmo.humanizing.com.",
  "protocolVersion": "2025-06-18",
  "websiteUrl": "https://cosmo.humanizing.com",
  "documentationUrl": "https://cosmo.humanizing.com/developers/mcp",
  "api_version": "2026-08-25",
  "remotes": [
    {
      "type": "streamable-http",
      "url": "https://cosmo.humanizing.com/mcp",
      "authentication": {
        "type": "none"
      }
    }
  ],
  "capabilities": {
    "tools": {
      "listChanged": false
    }
  },
  "tools": [
    {
      "name": "list_cosmo_products",
      "title": "List Cosmo products",
      "description": "List the Cosmo products (chatbot, voice agent, kiosk) with the channels each one runs on and a link to its product page. Optionally filter by product category.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "category": {
            "type": "string",
            "description": "Return only products in this family.",
            "enum": [
              "chatbot",
              "voicebot",
              "receptionist"
            ]
          }
        },
        "required": [],
        "additionalProperties": false
      }
    },
    {
      "name": "get_cosmo_product",
      "title": "Get one Cosmo product",
      "description": "Fetch a single Cosmo product by its stable id. Valid ids are chatbot, voicebot and kiosk.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "product_id": {
            "type": "string",
            "description": "Stable product identifier.",
            "enum": [
              "chatbot",
              "voicebot",
              "kiosk"
            ]
          }
        },
        "required": [
          "product_id"
        ],
        "additionalProperties": false
      }
    },
    {
      "name": "get_cosmo_pricing",
      "title": "Get Cosmo pricing",
      "description": "Return every published Cosmo plan with its list price in EUR, included credits and headline features, plus the add-ons that can be combined with any plan.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "interval": {
            "type": "string",
            "description": "Restrict prices to one billing interval. Omit to receive both.",
            "enum": [
              "monthly",
              "yearly"
            ]
          }
        },
        "required": [],
        "additionalProperties": false
      }
    },
    {
      "name": "get_cosmo_company_profile",
      "title": "Get company profile",
      "description": "Return the registered company behind Cosmo: legal name, postal address, VAT id, commercial register entry, contact email and phone, and the industries Cosmo publishes solution pages for.",
      "inputSchema": {
        "type": "object",
        "properties": {},
        "required": [],
        "additionalProperties": false
      }
    },
    {
      "name": "list_cosmo_pages",
      "title": "List readable pages",
      "description": "List the public pages of cosmo.humanizing.com that get_cosmo_page_markdown can read, with a short description of each.",
      "inputSchema": {
        "type": "object",
        "properties": {},
        "required": [],
        "additionalProperties": false
      }
    },
    {
      "name": "get_cosmo_page_markdown",
      "title": "Read a page as Markdown",
      "description": "Read any public page of cosmo.humanizing.com as Markdown, without HTML markup or navigation chrome. Pass a site path such as /pricing or /industries/public-sector.",
      "inputSchema": {
        "type": "object",
        "properties": {
          "path": {
            "type": "string",
            "description": "Site path beginning with '/', for example '/pricing'.",
            "examples": [
              "/",
              "/pricing",
              "/products/voicebot"
            ]
          }
        },
        "required": [
          "path"
        ],
        "additionalProperties": false
      }
    }
  ]
}
