Claude Code Plugins

Community-maintained marketplace

Feedback

Complete Medusa backend API reference and integration guide

Install Skill

1Download skill
2Enable skills in Claude

Open claude.ai/settings/capabilities and find the "Skills" section

3Upload to Claude

Click "Upload skill" and select the downloaded ZIP file

Note: Please verify skill by going through its instructions before using it.

SKILL.md

name medusa-backend
description Complete Medusa backend API reference and integration guide

Medusa Backend Skill

Complete documentation for Medusa e-commerce backend.

API Endpoints

Products

  • GET /store/products - List products
  • GET /store/products/:id - Get single product

Cart

  • POST /store/carts - Create cart
  • POST /store/carts/:id/line-items - Add item
  • POST /store/carts/:id/complete - Checkout

Orders

  • GET /store/orders - List orders
  • GET /store/orders/:id - Get order

Customers

  • POST /store/customers - Register
  • POST /store/auth/login - Login
  • GET /store/customers/me - Get me

See references/ for more documentation.