新機能と変更 -- 2026年3月
Last Updated: March 30, 2026
2026年3月中に Shopify 開発者エコシステムで変更されたすべての月次まとめです。API アップデート、MCP サーバーの変更、プラットフォーム発表、コミュニティの動向をカバーします。
このページは新しい変更が発表されるたびに月を通じて更新されます。最新の追加情報を毎週チェックしてください。NEW マークが付いたアイテムは最新の更新で追加されたものです。
開発者プラットフォームアップデート
Shopify Dev MCP サーバーアップデート
The official @anthropic-ai/shopify-dev-mcp server received several updates in March:
v1.4.0 (March 18, 2026):
- Added full API 2026-04 preview schema support
- Improved
search_docsrelevance scoring for Functions-related queries - New
get_extension_referencetool for Checkout UI Extension targets - Fixed:
validate_graphqlnow correctly handles inline fragment syntax - Performance: 30% faster documentation search response times
v1.3.2 (March 5, 2026):
- Bugfix:
explore_api_schemareturning stale results for connection types - Added Liquid reference for new
product.mediaobject properties - Updated scaffolding templates for Functions JavaScript runtime
Upgrade:
# Claude Code users -- remove and re-add to get latest
claude mcp remove shopify-dev
claude mcp add shopify-dev -- npx -y @anthropic-ai/shopify-dev-mcp@latest
# Or if pinned to a version
claude mcp add shopify-dev -- npx -y @anthropic-ai/shopify-dev-mcp@1.4.0
API バージョン 2026-04 プレビュー
The 2026-04 API version entered developer preview on March 10, 2026.
New in 2026-04:
| 機能 | タイプ | 説明 |
|---|---|---|
productBundleCreate | Mutation | Native product bundle creation (replaces Cart Transform for simple bundles) |
catalogAgentSession | Mutation | Create a session for AI agent catalog browsing |
customerSegment.predicted | Field | AI-predicted customer segment membership |
order.carbonFootprint | Field | Estimated carbon footprint per order |
webhook.deliveryAttempts | Connection | Query webhook delivery history |
Breaking changes (preview -- subject to change):
DraftOrder.appliedDiscountrenamed toDraftOrder.appliedDiscounts(plural, now returns array)FulfillmentOrder.assignedLocationtype changed fromLocationtoFulfillmentOrderAssignedLocation- New required field
reasononinventoryAdjustQuantitiesmutation
The 2026-04 API is in developer preview. Breaking changes may occur before the stable release. Do not use preview versions in production apps. Test against preview in development stores only.
How to test:
# Use the preview API version in your requests
POST https://your-store.myshopify.com/admin/api/2026-04/graphql.json
# Or in your app configuration
# shopify.app.toml
[access_scopes]
api_version = "2026-04"
Functions 移行タイムライン更新
Shopify published an updated timeline for Functions migration:
| マイルストーン | 日付 | 詳細 |
|---|---|---|
| JavaScript GA | March 15, 2026 | JavaScript Functions now generally available |
| Rust deprecation notice | June 2026 | Rust remains supported but JavaScript is the recommended path |
| Network access beta | April 2026 | Limited external HTTP calls from Functions |
| Persistent state | Q3 2026 | Functions can read/write metafields directly |
| Script Tags sunset | October 2026 | All Script Tag functionality must migrate to Functions |
NEW -- March 15 update: JavaScript Functions are now generally available. The Javy runtime powering JavaScript Functions has been benchmarked at near-Rust performance for most workloads:
| メトリクス | Rust | JavaScript (Javy) |
|---|---|---|
| Cold start | 1-2ms | 2-4ms |
| Execution (simple) | 0.5ms | 0.8ms |
| Execution (complex) | 2ms | 3.5ms |
| Memory usage | 1-2MB | 3-5MB |
| Max execution time | 10ms | 10ms |
If your app uses Script Tags, start migrating to Functions now. Use the Dev MCP server to scaffold your Functions:
Search the Shopify docs for migrating from Script Tags to Functions.
Then scaffold a [discount/shipping/payment] function in JavaScript.
Sidekick エクステンションの進捗
March updates to the Sidekick Extensions developer preview:
-
New extension points:
sidekick.product.suggest-- Suggest products when a merchant asks Sidekick about their catalogsidekick.analytics.query-- Answer analytics questions using your app's datasidekick.marketing.action-- Execute marketing actions (email campaigns, social posts)
-
SDK improvements:
- TypeScript SDK updated to v0.4.0 with full type definitions
- New testing harness for simulating Sidekick conversations
- Improved error handling with structured error codes
-
Documentation:
- New "Building Your First Sidekick Extension" tutorial
- Updated API reference with all available extension points
- Best practices guide for conversational UX in Sidekick
Current limitations:
- Maximum 3 extension points per app
- 5-second timeout for extension responses
- No streaming responses (batch only)
- Available to approved partners only
Catalog API アップデート
NEW -- The Catalog API entered public beta on March 20, 2026.
What changed from private alpha:
- Added
productRecommendationsquery for AI-powered product suggestions - New
productComparisonquery for side-by-side feature comparison - Semantic search now supports multi-language queries
- Rate limits set at 100 requests/second (10x higher than standard Admin API)
- Added
catalogWebhookfor real-time catalog change notifications
Access:
# Request public beta access
shopify app catalog-api enable
# Or through the Partner Dashboard:
# Apps > Your App > Catalog API > Enable Beta
Checkout MCP 拡張
NEW -- A new MCP server specifically for checkout customization is in early access:
# Early access -- request through Partner Dashboard
claude mcp add shopify-checkout -- npx -y @shopify/checkout-mcp@latest
Tools available:
list_checkout_profiles-- View all checkout customization profilesget_checkout_branding-- Current branding configurationpreview_checkout-- Generate a preview URL for a checkout configurationlist_extension_targets-- Available extension points for checkout UIvalidate_extension-- Validate a checkout extension before deployment
ストア&テーマアップデート
テーマアーキテクチャの変更
March theme updates:
- Section Group improvements: Section groups now support nested groups (up to 2 levels deep)
- New preset format: Theme presets can now include metafield references
- Block limits increased: Maximum blocks per section increased from 16 to 50
- Dynamic sources in schema: Section schema can now reference metafield definitions for dynamic settings
{
"name": "Product Feature",
"type": "product-feature",
"settings": [
{
"type": "metafield",
"id": "feature_data",
"label": "Feature Data",
"metafield_definition": {
"namespace": "custom",
"key": "product_features",
"owner_type": "PRODUCT"
}
}
]
}
新しい Liquid オブジェクトとフィルター
| オブジェクト/フィルター | タイプ | 説明 |
|---|---|---|
product.media | Object | Replaces product.images with full media support (images, video, 3D) |
product.selected_selling_plan | Object | Currently selected subscription plan |
cart.duties | Object | Duty/tax breakdown for international orders |
customer.predicted_segment | Object | AI-predicted customer segment |
| ` | semantic_description` | Filter |
| ` | currency_convert` | Filter |
コマース&決済アップデート
Shopify Payments の変更
- ACH payments GA: ACH payments now available to all US Shopify Payments merchants (previously Plus only)
- Multi-currency ACH: Support for CAD, GBP, EUR in addition to USD
- Installment payments: New integration with major BNPL providers through Shopify Payments
- Dispute management API: New endpoints for programmatic dispute response
プロダクトネットワークアップデート
- Cross-border support: Product Network now supports international supplier-retailer relationships
- Automated pricing rules: Suppliers can set margin rules that auto-calculate retailer prices
- Bulk onboarding: Import 1,000+ products to the network in a single operation
- Analytics: New analytics for suppliers showing retailer performance
パートナープログラムの変更
収益分配の更新
Effective March 1, 2026:
| 収益ティア | 以前の分配 | 新しい分配 |
|---|---|---|
| First $1M lifetime | 100% to developer | 100% to developer |
| $1M - $10M | 85% to developer | 85% to developer |
| $10M+ | 80% to developer | 85% to developer |
Partners earning over $10M lifetime revenue now keep 85% instead of 80%. This change applies retroactively to all revenue earned from March 1, 2026 onward.
App Store の変更
- NEW -- Enhanced app listing analytics with conversion funnel data
- NEW -- A/B testing for app store listings (title, screenshots, description)
- Review response time SLA: Shopify commits to first review within 5 business days
- New "Verified" badge for apps that pass enhanced security review
- App categories reorganized -- new "AI & Automation" category
パートナーダッシュボードの更新
- Real-time revenue tracking (previously 24-hour delay)
- Improved churn analysis with reason codes
- Merchant communication tools (in-app messaging)
- API usage quota visibility and alerts
コミュニティアップデート
今月の注目ディスカッション
r/shopifydev:
- "JavaScript Functions benchmarks vs Rust -- real-world numbers" (350+ upvotes)
- "Catalog API first impressions from the public beta" (280+ upvotes)
- "My MCP setup for managing 3 stores with Claude Code" (200+ upvotes)
Shopify Partners Slack:
- Active debate on Functions JavaScript vs Rust for performance-critical workloads
- Several partners sharing Sidekick Extension prototypes
- Growing thread on Catalog API use cases for AI agents
GitHub:
shopify-dev-mcp-- v1.4.0 released with 2026-04 preview supportshopify-mcp(GeLi2001) -- v3.0 release with improved error handling- New community MCP server for Shopify analytics (200+ stars in first week)
今後のイベント
| 日付 | イベント | 詳細 |
|---|---|---|
| April 3, 2026 | Shopify Dev AMA | Functions JavaScript GA -- Q&A with the Functions team |
| April 10, 2026 | Partner Webinar | "Building for Agentic Commerce" |
| April 15, 2026 | Shopify Meetup | Toronto -- Sidekick Extensions workshop |
| June 2026 | Shopify Editions Summer '26 | Expected announcement |
開発者向けアクションアイテム
今週
- Update your Dev MCP server to v1.4.0 for 2026-04 preview schema
- Test your app against the 2026-04 preview API on a development store
- Review the Functions JavaScript GA announcement if you have Script Tags
今月
- Apply for Catalog API public beta access
- Start planning Script Tag to Functions migration (October 2026 deadline)
- Explore Sidekick Extension points for your app category
- Update app store listing for new "AI & Automation" category if applicable
今四半期
- Migrate to API 2026-01 if still on 2025-07 or earlier
- Build a proof-of-concept Sidekick Extension
- Evaluate Catalog API integration for AI agent compatibility
- Plan for 2,048 variant support in your product management UI
過去の月次アップデート
- Winter '26 Edition: Complete Developer Guide -- January 2026 Edition breakdown
- February 2026 -- Coming soon