hm-hennes-mauritz

hm-hennes-mauritz

3.5

The HM - Hennes Mauritz MCP Server provides access to tools for retrieving detailed information about H&M's regions, categories, and products.

The HM MCP Server enables users to query extensive data about H&M, allowing for seamless integration with your applications. You can access information about different regions, explore product categories, and delve into product specifics, all through a set of well-organized tools.

Features

  • Regions Data: Retrieve a list of regions where H&M is supported, helping you tailor your queries according to regional availability.
  • Categories Information: Access a comprehensive list of product categories available at H&M, aiding in navigation and filtering of products.
  • Product Exploration: Utilize multiple functions to list products with options to sort, filter, or search by name, search for specific products using barcodes, and obtain detailed information about individual products.

MCP Tools

  • List Regions: Access a complete list of regions supported by H&M. This tool is essential for understanding the geographic scope of H&M's services.
  • List Categories: Retrieve all available product categories offered by H&M. This tool helps in organizing and filtering products based on specific interests or needs.
  • List Products: This versatile tool allows you to list and sort products by various parameters, including price and stock availability. It supports filtering by categories, sizes, colors, and more, ensuring you can find exactly what you're looking for.
  • Search by Barcode: Quickly find product information using a barcode. This function is ideal for streamlining inventory management and product identification.
  • Product Details: Access detailed information about a specific product, including specifications and availability. This tool is crucial for making informed purchasing decisions.

Usage with Different Platforms

python

python
import requests

# Example of using the HM MCP Server to list regions
response = requests.get('https://api.hm.com/mcp/regions')
regions = response.json()
print(regions)

javascript

javascript
fetch('https://api.hm.com/mcp/regions')
  .then(response => response.json())
  .then(data => console.log(data));