← Browse

@majiayu000/open-commerce

B

Open Commerce MCP and AI operations context

skillclaude

Install

agr install @majiayu000/open-commerce --target claude

Writes 2 files into .claude/skills/, pinned to git-9039b091.

  • .claude/skills/open-commerce/SKILL.md
  • .claude/skills/open-commerce/metadata.json

Document


name: open-commerce description: Open Commerce MCP and AI operations context

Open Commerce Domain Context

What Is Open Commerce?

Open Commerce enables AI-powered commerce operations through the Model Context Protocol (MCP). It allows AI agents to interact with Violet's commerce capabilities using natural language.

Core Capabilities

MCP Server

  • Natural language product search
  • Order creation and management
  • Cart operations
  • Customer lookup

AI Operations

  • Conversational commerce
  • Automated order processing
  • Intelligent product recommendations
  • Customer service automation

MCP Tools

ToolPurpose
search_productsFind products by natural language query
get_productGet detailed product information
create_cartStart a new shopping cart
add_to_cartAdd products to cart
checkoutComplete purchase
get_orderRetrieve order details
track_orderGet fulfillment status

Example Usage

from mcp import Server

server = Server("violet-commerce")

@server.tool()
async def search_products(query: str, limit: int = 10) -> list:
    """Search for products in the Violet catalog."""
    # Implementation
    pass

@server.tool()
async def create_order(
    customer_email: str,
    items: list[dict],
    shipping_address: dict
) -> dict:
    """Create a new order with the specified items."""
    # Implementation
    pass

Integration Points

  • Violet API: Core commerce operations
  • AI Agents: Claude, GPT, custom agents
  • Chat Platforms: Slack, Discord, custom
  • Voice Assistants: Natural language interfaces

Key Patterns

Stateless Operations

Each MCP call is independent - no session state between calls.

Authentication

  • API key authentication
  • Scoped permissions per tool
  • Rate limiting per key

Error Handling

  • Clear error messages for AI agents
  • Retry guidance in responses
  • Graceful degradation

Repository README

Describes majiayu000/claude-skill-registry-data as a whole, which may contain artifacts other than this one. Where this artifact had no useful description of its own, its summary was taken from here.

Claude Skill Registry (Data)

This repo contains the archived skill contents (the heavy, browsable skill files).

Canonical layout

  • Category folders at repo root (e.g. development/, documents/, data/, ...)
  • Each skill lives under a category: <category>/<skill>/SKILL.md + <category>/<skill>/metadata.json
  • Case conflicts are resolved with {name}-{owner}-{repo} suffixes (fallback: -{short-hash}).

Archive status

  • Live badges above are sourced from claude-skill-registry-core stats.json.
  • Counts in this README are intentionally dynamic, not hardcoded.
  • If the badges look stale, refresh the core build/index pipeline rather than editing numbers here.

Where the index + site live

Trustgrade B

  • passBody integrity

    Whether the stored document is plausibly the kind of file the artifact declares, rather than something fetched by mistake.

  • passType matchnot applicable to this artifact type

    Whether the artifact is really the kind of thing its metadata claims it is.

  • passFreshness

    How long since the source repository was last pushed to.

  • passPrompt injection

    Scans the artifact's own text for instructions aimed at your agent rather than at you.

  • warnLicenseno SPDX license detected

    Whether the source repository declares an SPDX license permissive enough to redistribute.

How the grade is calculated

Each check contributes 0 points when it passes, 1 when it warns, and 2 when it fails. The total maps to a letter:

  • Aevery check passed
  • Bone warning
  • Ctwo warnings
  • Dprompt injection or body integrity failed, or three warnings
  • Fone of those failed, and something else is wrong

These are automated hygiene checks, not a security audit, and not a dependency or vulnerability scan. A grade of A means nothing was flagged — not that the artifact is safe.

Versions

  • git-9039b0919b972026-07-31