Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计通过

shopify-dev-mcpShopify DEV MCP 搜索

Agent Skill

shopify-dev-mcp 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

261

周安装

11

GitHub Stars

2

下载量

92
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:shopify-dev-mcp(Shopify DEV MCP 搜索)
来源仓库:https://github.com/preetamnath/agent-skills
仓库路径:skills/shopify-dev-mcp
安装命令:
npx skills add https://github.com/preetamnath/agent-skills --skill shopify-dev-mcp
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/preetamnath/agent-skills --skill shopify-dev-mcp

简介

Shopify DEV MCP 搜索技能用于查找、检索和筛选相关信息,支持关键词和场景匹配。

  • 适用于 Codex、Claude、Cursor、Gemini CLI 等宿主环境。
  • 通过 GitHub 安装,使用 npx skills add 命令添加指定仓库的技能。
  • 需确认权限范围和维护状态,注意可能触发联网或文件读写操作。
  • shopify-dev-mcp 属于研究检索类 Skill,可作为该场景下的辅助能力补充。

SKILL.md

Shopify Dev MCP

Route MCP tool calls through the appropriate tools — standard lookups, not deep reasoning tasks.

Instructions

1 — Initialize

Call learn_shopify_api with the target api surface. Consult the API Surfaces appendix below to confirm the correct api value. Extract the returned conversationId — pass it to every subsequent call.

2 — Route

Determine which tool answers the question: doc search, schema introspection, extension targets, or full page fetch. Consult the Tools Reference below for parameters and gotchas.

3 — Use

Call the appropriate tool(s). If switching API surfaces mid-conversation, call learn_shopify_api again with the existing conversationId and the new api.

4 — Validate

Before committing any generated code:

  • <s-*> component markup → validate_component_codeblocks (mandatory)
  • GraphQL queries/mutations → validate_graphql_codeblocks (mandatory)
  • Liquid/theme files → validate_theme (mandatory)

5 — Fix and re-validate

If validation fails, fix errors and re-validate. Increment revision on the same artifactId to track iterations. If validation fails twice on the same artifact, stop and surface the error to the user.


API Surfaces

All 15 valid values for the api param on learn_shopify_api:

api valueDescription
adminAdmin GraphQL API (orders, products, metafields)
admin-executionAdmin API execution surface (Shopify-internal — present in the learn_shopify_api enum but NOT in the GraphQL validator enum)
storefront-graphqlStorefront API (custom storefronts, cart ops)
partnerPartner API (dashboard data, apps, referrals)
customerCustomer Account API (orders, payment methods, addresses)
payments-appsPayments Apps API (payment provider integrations)
functionsShopify Functions (discounts, delivery, cart transforms)
polaris-app-homeApp Home UI (<s-*> web components in admin iframe)
polaris-admin-extensionsAdmin action/block extensions
polaris-checkout-extensionsCheckout and post-purchase web-component extensions (@shopify/ui-extensions, <s-*>).
polaris-customer-account-extensionsCustomer account page extensions
pos-uiPoint of sale UI extensions
hydrogenHydrogen framework
liquidLiquid templates
custom-dataMetafields and metaobjects
Note: validate_component_codeblocks accepts one additional value — storefront-web-components — that is NOT valid for learn_shopify_api. See the validator's section below.

Tools Reference

Tool availability varies by MCP server build. Some installations register only a subset (typically: learn_shopify_api, search_docs_chunks, validate_component_codeblocks, validate_graphql_codeblocks, validate_theme). If a tool below is not callable in your environment, fall back to search_docs_chunks.

learn_shopify_api

Purpose: Load API overview and get a conversationId. Must be called before all other tools.

ParamTypeRequiredNotes
apienum (15 values above)YesTarget surface
modelstringNo (always provide)Telemetry. Schema marks not-required, but the description says "ALWAYS provide". Pass the current model name; pass 'none' if unknown.
conversationIdstring (UUID)NoPass existing ID when switching surfaces mid-conversation. Omit on first call — a new ID is generated and returned.

Returns: conversationId (UUID) — required by every subsequent tool call.

Gotchas:

  • Call again (with same conversationId) when switching API surfaces. This loads new context without losing conversation state.
  • The response includes a component/API index for the surface — use it to guide subsequent search_docs_chunks queries.

search_docs_chunks

Purpose: Semantic search over shopify.dev documentation. Returns relevant doc chunks with URLs.

ParamTypeRequiredNotes
conversationIdstringYesFrom learn_shopify_api
promptstringYesNatural language search query
api_namestringNoFilter results to a specific API surface (use the same value as api in learn_shopify_api)
max_num_resultsnumberNoLimit result count. Omit on first call; use when trimming for context-window constraints.

Gotchas:

  • Prefer this over fetch_full_docs for targeted lookups.
  • For storefront-graphql, this is the only reliable doc tool — introspect_graphql_schema and fetch_full_docs are restricted.

fetch_full_docs

Purpose: Fetch complete documentation pages by path. Use when you need full property/slot/event details from a page found via search_docs_chunks.

ParamTypeRequiredNotes
conversationIdstringYesFrom learn_shopify_api
pathsstring[]YesDoc paths relative to site root, e.g. ["/docs/api/app-home"]

Gotchas:

  • The learn_shopify_api response labels fetch_full_docs as DEPRECATED for some surfaces, but where present the tool still works. Prefer search_docs_chunks; fall back to fetch_full_docs for complete property/slot/event docs.
  • For storefront-graphql, this tool is restricted — use search_docs_chunks instead.
  • May not be registered in all MCP server builds.

validate_component_codeblocks

Purpose: Validate <s-*> web component markup against Shopify's schema. Catches hallucinated components, props, and prop values.

ParamTypeRequiredNotes
conversationIdstringYesFrom learn_shopify_api
apienumYesOne of: polaris-app-home, polaris-admin-extensions, polaris-checkout-extensions, polaris-customer-account-extensions, pos-ui, hydrogen, storefront-web-components (7 values)
codearray of {content: string, artifactId?: string, revision?: number}YesCode blocks. content is required per item. Param key is code (not codeblocks).
extensionTargetstringNo*Required for extension surfaces: polaris-admin-extensions, polaris-checkout-extensions, polaris-customer-account-extensions, pos-ui. Determines which components/APIs are available. Where learn_extension_target_types is registered, use it to discover valid targets.

Input format: Wrap code in a function — JS logic outside return, components inside return:

const Example = () => {
  const [value, setValue] = useState('');

  return (
    <s-page heading="Example">
      <s-section>
        <s-text-field label="Name" value={value} />
      </s-section>
    </s-page>
  );
};

Raw HTML also works, but the function wrapper is recommended.

Gotchas:

  • The param is code (array), not codeblocks — opposite naming from validate_graphql_codeblocks.
  • Mandatory after generating ANY <s-*> markup — never skip, even for small snippets.
  • For polaris-checkout-extensions, pass the specific extensionTarget (e.g. purchase.checkout.block.render) to get accurate validation.
  • The validator does not type App Bridge web components (<s-app-window>, <s-app-nav>) as JSX intrinsic elements — they will fail validation in TSX even though they're real components. Use raw HTML, the App Bridge React wrappers (<TitleBar>, <NavMenu>), or a JSX type augmentation.

GraphQL API enum

IMPORTANT — this enum differs from learn_shopify_api.

validate_graphql_codeblocks and introspect_graphql_schema share an expanded 18-value enum where functions splits into 13 specific subtypes. admin-execution is NOT in this enum — even though it's valid for learn_shopify_api.

ValueDescription
adminAdmin GraphQL API
storefront-graphqlStorefront API
partnerPartner API
customerCustomer Account API
payments-appsPayments Apps API
functions_cart_checkout_validationCart and Checkout Validation Function inputs
functions_cart_transformCart Transform Function inputs
functions_delivery_customizationDelivery Customization Function inputs
functions_discountDiscount Function inputs
functions_discounts_allocatorDiscounts Allocator Function inputs
functions_fulfillment_constraintsFulfillment Constraints Function inputs
functions_local_pickup_delivery_option_generatorLocal Pickup Delivery Option Generator inputs
functions_order_discountsOrder Discounts Function inputs
functions_order_routing_location_ruleOrder Routing Location Rule inputs
functions_payment_customizationPayment Customization Function inputs
functions_pickup_point_delivery_option_generatorPickup Point Delivery Option Generator inputs
functions_product_discountsProduct Discounts Function inputs
functions_shipping_discountsShipping Discounts Function inputs

validate_graphql_codeblocks

Purpose: Validate GraphQL queries/mutations against the Shopify schema. Catches hallucinated fields and operations.

ParamTypeRequiredNotes
conversationIdstringYesFrom learn_shopify_api
codeblocksarray of {content: string, artifactId?: string, revision?: number}YesEach content is raw GraphQL (no markdown backticks). Param key is codeblocks (not code).
apienumNoDefaults to admin. See GraphQL API enum.

Gotchas:

  • The param is codeblocks (array), not code — opposite naming from validate_component_codeblocks.
  • Content must be raw GraphQL, not wrapped in markdown code fences.
  • For Functions, use the specific functions_* subtype from the GraphQL API enum, not functions.

introspect_graphql_schema

Purpose: Explore GraphQL schema — find fields, types, queries, mutations, and required scopes.

ParamTypeRequiredNotes
conversationIdstringYesFrom learn_shopify_api
querystringYesSimple search term (e.g. product, discountProduct, capture). One concept at a time.
apienumNoDefaults to admin. Same expanded enum as validate_graphql_codeblocks — see GraphQL API enum.
filterstring[]NoFilter results: all (default), types, queries, mutations. Pass as array, e.g. ["queries", "mutations"].

Fallback strategy (confirmed accurate):

  1. Start with the most specific term from the request.
  2. If no results, try broader terms or individual words (e.g. captureSession → try capture).
  3. For list operations, try all, list, or the plural object name.
  4. For mutations, try the action verb: create, update, delete.

Gotchas:

  • Uses the same expanded api enum as validate_graphql_codeblocksfunctions splits into 13 subtypes.
  • For storefront-graphql, this tool is restricted — use search_docs_chunks instead.
  • May not be registered in all MCP server builds.

learn_extension_target_types

Purpose: Get type declarations for components and APIs available within a specific extension target.

ParamTypeRequiredNotes
conversationIdstringYesFrom learn_shopify_api
apienumYesThe surface
extension_targetstringYesThe specific extension target (e.g. purchase.checkout.block.render)

Supported surfaces:

  • polaris-admin-extensions
  • polaris-checkout-extensions
  • polaris-customer-account-extensions
  • pos-ui

Not supported:

  • polaris-app-home — not an extension surface.

May not be registered in all MCP server builds. When unavailable, look up valid extension targets via search_docs_chunks instead.


validate_theme

Purpose: Validate Liquid and theme files (JSON locales, config, templates, JS, CSS, SVG).

ParamTypeRequiredNotes
conversationIdstringYesFrom learn_shopify_api
absoluteThemePathstringYesAbsolute path to theme directory
filesCreatedOrUpdatedarray of {path: string, artifactId?: string, revision?: number}Yespath is relative to the theme root

Validation Reference

Required params per surface for validate_component_codeblocks

SurfaceapiextensionTarget required?
polaris-app-homepolaris-app-homeNo
polaris-admin-extensionspolaris-admin-extensionsYes
polaris-checkout-extensionspolaris-checkout-extensionsYes
polaris-customer-account-extensionspolaris-customer-account-extensionsYes
pos-uipos-uiYes
hydrogenhydrogenNo
storefront-web-componentsstorefront-web-componentsNo

Artifact tracking

Both validate_component_codeblocks and validate_graphql_codeblocks support iterative tracking:

  • artifactId — Stable ID for the code artifact. Omit on first validation (the tool generates one). Reuse the returned ID on subsequent validations of the same artifact.
  • revision — Starts at 1. Increment on each re-validation of the same artifactId. Tracks validation retries vs. new validations.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

34.38%
按下载量换算32

Claude

30.03%
按下载量换算28

Cursor

17.62%
按下载量换算16

Gemini CLI

8.17%
按下载量换算8

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills