Now liveThe Skillselion MCP - thousands of ranked skills, loaded into your agent mid-task. No install.Get it →
vercel-labs avatar

Marketplace Sdk Reference

  • 32 installs
  • 3 repo stars
  • Updated April 6, 2026
  • vercel-labs/sitecore-skills

marketplace-sdk-reference documents Sitecore Marketplace SDK APIs.

About

The marketplace-sdk-reference skill answers questions about Sitecore Marketplace SDK v0.4 APIs across client, xmc, and ai packages. Check local reference markdown files first, then WebFetch developers.sitecore.com marketplace SDK docs. Provides TypeScript examples for ClientSDK.init, query, mutate, and subscribe patterns. Maps packages: client for core queries and mutations, xmc for Sites Pages Authoring Content Transfer Search and Agent APIs, ai for Brand Review. Use when users ask about SDK methods, types, queries, mutations, or subscriptions.

  • SDK v0.4 reference for client, xmc, and ai packages.
  • TypeScript examples for query mutate subscribe patterns.
  • Local reference files plus live docs fallback.
  • Specifies package ownership per API area.
  • Quick ClientSDK.init and common patterns.

Marketplace Sdk Reference by the numbers

  • 32 all-time installs (skills.sh)
  • +1 installs in the week ending Jul 27, 2026 (Skillselion tracking)
  • Ranked #934 of 1,901 Documentation skills by installs in the Skillselion catalog
  • Security screen: LOW risk (skills.sh audit)
  • Data as of Jul 27, 2026 (Skillselion catalog sync)
At a glance

marketplace-sdk-reference capabilities & compatibility

Capabilities
sdk architecture and quick reference
Use cases
documentation · api development
From the docs

What marketplace-sdk-reference says it does

Sitecore Marketplace SDK API reference
SKILL.md
npx skills add https://github.com/vercel-labs/sitecore-skills --skill marketplace-sdk-reference

Add your badge

Show developers this skill is listed on Skillselion. Paste this into your README.

Listed on Skillselion
Installs32
repo stars3
Security audit2 / 3 scanners passed
Last updatedApril 6, 2026
Repositoryvercel-labs/sitecore-skills

How do I call a Sitecore Marketplace SDK query or mutation?

Reference guide for Sitecore Marketplace SDK client, XMC, and AI package APIs.

Who is it for?

Developers integrating Sitecore Marketplace SDK features.

Skip if: Skip for non-Sitecore projects.

When should I use this skill?

User asks about Marketplace SDK methods or types.

What you get

TypeScript SDK usage with correct package and method.

Files

SKILL.mdMarkdownGitHub ↗

Sitecore Marketplace SDK Reference

You are the reference guide for the Sitecore Marketplace SDK (v0.4). Answer questions about API methods, types, queries, mutations, and subscriptions.

How to Answer

1. First check the reference files below for the answer 2. If the reference files don't cover it, use WebFetch to check https://developers.sitecore.com/marketplace/sdk for the latest docs 3. Always provide TypeScript code examples 4. Always specify which package the API belongs to (client, xmc, or ai)

SDK Architecture

The SDK has 3 packages:

@sitecore-marketplace-sdk/client (required)

The core client. Provides ClientSDK, queries, mutations, subscriptions, and type definitions.

  • See client-api.md for full API reference

@sitecore-marketplace-sdk/xmc

XM Cloud APIs for Sites, Pages, Authoring, Content Transfer, Search, and Agent.

  • See xmc-api.md for full API reference

@sitecore-marketplace-sdk/ai

AI Skills APIs for Brand Review.

  • See ai-api.md for full API reference

Quick Reference

Client Initialization

import { ClientSDK } from "@sitecore-marketplace-sdk/client";

const client = await ClientSDK.init({
  target: window.parent,
});

Common Patterns

// Query — returns { data, unsubscribe? }
const { data } = await client.query("queryName", params);

// Mutation
const { data } = await client.mutate("mutationName", params);

// Subscription — use query() with subscribe: true
const { unsubscribe } = await client.query("queryName", {
  subscribe: true,
  onSuccess: (data) => console.log(data),
});
unsubscribe?.();

Reference Files

  • Client API — Core client queries, mutations, subscriptions, and types
  • XM Cloud API — XM Cloud API reference
  • AI API — AI Skills API reference

Related skills

FAQ

What does marketplace-sdk-reference do?

marketplace-sdk-reference documents Sitecore Marketplace SDK APIs.

When should I use marketplace-sdk-reference?

User asks about Marketplace SDK methods or types.

Is this skill safe to install?

Review the Security Audits panel on this page before installing in production.

Documentationdocsintegrations

This week in AI coding

Five minutes, every Monday - the tools, releases and tactics for developers.

unsubscribe anytime.