Caffeinated Wardrobe

Caffeinated Wardrobe is like an API for your closet.

Community: Submitted by a user or imported; check the owner before granting accessOnlineNo sign-inGlobalFreeRead-only

What it can do

  • List Tags: Get all unique tags used by the current user for their items.
  • Create Item: Create a new wardrobe item. For brands, colors, and stores, you can provide either the name or ID: - brand: "Nike" (auto-creates if not found) OR brand_id: UUID - color: "Blue" (auto-crea
  • List Items: Get a list of all wardrobe items with reduced details for MCP efficiency.

What data it sees

Do you need an account

No: the server works without sign-in

Caffeinated Wardrobe is like an API for your closet. This MCP server brings programmatic wardrobe management to any MCP-compatible AI client - track clothing items, compose (and remember) outfits, analyze wear patterns, and get AI-powered styling recommendations. Combine with filesystem, calendar, or browser MCP servers for context-aware outfit suggestions based on your schedule, weather, or recent purchases.

Server tool list (20)

Raw names from tools/list. Only developers need these.

list_tagsGet all unique tags used by the current user for their items.
create_itemCreate a new wardrobe item. For brands, colors, and stores, you can provide either the name or ID: - brand: "Nike" (auto-creates if not found) OR brand_id: UUID - color: "Blue" (auto-creates if not found) OR color_id: UUID - store: "Amazon" (auto-creates if not found) OR store_id: UUID You can also provide image_urls to upload images from publicly accessible URLs. Images will be uploaded after the item is created. If any image URLs fail to upload, the item will still be created successfully. No need to check if brands/colors/stores exist first - the system handles this automatically.
list_itemsGet a list of all wardrobe items with reduced details for MCP efficiency.
get_item_detailsGet details of a specific wardrobe item.
update_existing_itemUpdate an existing wardrobe item. For brands, colors, and stores, you can provide either the name or ID: - brand: "Nike" (auto-creates if not found) OR brand_id: UUID - color: "Blue" (auto-creates if not found) OR color_id: UUID - store: "Amazon" (auto-creates if not found) OR store_id: UUID You can also provide image_urls to upload images from publicly accessible URLs. Images will be uploaded after the item is updated. If any image URLs fail to upload, the item will still be updated successfully. No need to check if brands/colors/stores exist first - the system handles this automatically.
delete_itemDelete a wardrobe item.
upload_images_from_urlsUpload images for a specific wardrobe item from URLs. Designed for MCP tools to avoid base64 encoding overhead.
delete_imageDelete an image associated with a specific wardrobe item.
set_default_imageSet a specific image as the default for a wardrobe item.
get_related_itemsGet all items that are related to the specified item.
create_item_relationshipCreate a new relationship between two items.
delete_item_relationshipDelete a relationship between two items.
get_item_wear_historyGet wear history for a specific item.
list_outfitsGet a list of all outfits.
create_outfitCreate a new outfit.
get_outfit_detailsGet details of a specific outfit.
update_outfitUpdate an existing outfit. When modifying the item composition of an outfit that has been worn, a new outfit will be automatically created with the updated composition. The original outfit and its wear history will be preserved. The response will include the new outfit ID and a flag indicating whether a new outfit was created. Examples: - Updating unworn outfit composition: Returns updated outfit with new_outfit_created=False - Updating worn outfit composition: Returns new outfit with new_outfit_created=True - Updating outfit metadata only: Returns updated outfit with new_outfit_created=False
delete_outfitDelete an existing outfit.
get_outfit_wear_historyGet wear history for a specific outfit.
record_wearRecord that an item or outfit was worn at a specific date/time. Will default to now if not provided.