chicmi-local-fashion
The Chicmi Local Fashion MCP server provides access to fashion data in major UK cities, offering insights into events, sales, and stores.
The Chicmi Local Fashion MCP server is a specialized platform designed to deliver comprehensive fashion data from key fashion cities such as London, Glasgow, Edinburgh, and Manchester. It serves as a valuable resource for fashion enthusiasts, industry professionals, and event organizers by providing real-time information on fashion sales, sample sales, exhibitions, and other related events. The server operates through a RESTful JSON API, which is accessible without authentication, ensuring ease of use and integration. Users can explore data categorized into stores, events, and sales, with sales being a subset of events. This server is particularly useful for those looking to stay updated on the latest fashion happenings in these vibrant cities.
Features
- Provides real-time fashion data from major UK cities.
- RESTful JSON API with no authentication required.
- Categorizes data into stores, events, and sales.
- Offers detailed filtering options for events.
- Supports multiple cities including London, Glasgow, Edinburgh, and Manchester.
MCP Tools
- get_fashion_events_in_city: Retrieve all fashion events happening in a particular city with various filtering options.
Usage with Different Platforms
python
python
import requests
url = 'https://api.chicmi.com/events'
params = {
'city': 'london',
'days': 5,
'sectors': 'luxury,designer',
'types': 'brand-sales,exhibitions',
'max_results': 3
}
response = requests.get(url, params=params)
print(response.json())
javascript
javascript
const fetch = require('node-fetch');
const url = 'https://api.chicmi.com/events';
const params = new URLSearchParams({
city: 'london',
days: '5',
sectors: 'luxury,designer',
types: 'brand-sales,exhibitions',
max_results: '3'
});
fetch(`${url}?${params}`)
.then(response => response.json())
.then(data => console.log(data));