What is kishimoto banana shopify py mcp
Shopify Python MCP Server
Shopify APIと連携するMCPサーバーです。このサーバーを使用することで、Claude DesktopからShopifyの商品情報を取得・操作することができます。
機能
ツール
このサーバーは以下のツールを提供します:
-
list_products: 商品一覧を取得する
limit
: 取得する商品数(最大250、デフォルト値は50)
-
get_product: 商品の詳細情報を取得する
product_id
: 商品ID(必須)
-
create_product: 新しい商品を作成する
title
: 商品名(必須)body_html
: 商品の説明(HTML形式)vendor
: ベンダー名product_type
: 商品タイプtags
: タグ(カンマ区切り)status
: ステータス(active/draft/archived)variants
: バリエーションoptions
: オプションimages
: 画像
-
update_product: 商品を更新する
product_id
: 商品ID(必須)title
: 商品名body_html
: 商品の説明(HTML形式)vendor
: ベンダー名product_type
: 商品タイプtags
: タグ(カンマ区切り)status
: ステータス(active/draft/archived)variants
: バリエーションoptions
: オプションimages
: 画像
-
delete_product: 商品を削除する
product_id
: 商品ID(必須)
設定
必要な環境変数
このサーバーを使用するには、以下の環境変数を設定する必要があります:
SHOPIFY_SHOP_URL
: ShopifyストアのURL(例: mystore.myshopify.com)SHOPIFY_API_KEY
: Shopify Admin APIのAPIキーSHOPIFY_API_PASSWORD
: Shopify Admin APIのAPIパスワード(Secret)SHOPIFY_API_VERSION
: Shopify APIのバージョン(デフォルト: 2023-10)
Claude Desktopでの設定
Claude Desktopで使用する場合は、以下の設定をclaude_desktop_config.jsonに追加します:
macOS
設定ファイルの場所: ~/Library/Application Support/Claude/claude_desktop_config.json
"mcpServers": {
"shopify-py-mcp": {
"command": "uv",
"args": [
"--directory",
"/your_path/shopify-py-mcp",
"run",
"shopify-py-mcp"
],
"env": {
"SHOPIFY_SHOP_URL": "your-store.myshopify.com",
"SHOPIFY_API_KEY": "your-api-key",
"SHOPIFY_API_PASSWORD": "your-api-password",
"SHOPIFY_API_VERSION": "2023-10"
}
}
}
使用方法
Claude Desktopでこのサーバーを使用するには、以下のようにツールを呼び出します:
商品一覧の取得
商品一覧を取得してください。
商品の詳細情報の取得
商品ID 1234567890の詳細情報を取得してください。
新しい商品の作成
以下の情報で新しい商品を作成してください:
- 商品名: サンプル商品
- 説明: これはサンプル商品です。
- 価格: 1000円
商品の更新
商品ID 1234567890を以下の情報で更新してください:
- 商品名: 更新後の商品名
- 価格: 2000円
商品の削除
商品ID 1234567890を削除してください。
開発
依存関係のインストール
cd shopify-py-mcp
uv sync --dev --all-extras
デバッグ
MCP Inspectorを使用してデバッグすることができます:
npx @modelcontextprotocol/inspector uv --directory /your_path/shopify-py-mcp run shopify-py-mcp
ビルドと公開
パッケージを配布用に準備するには:
- 依存関係を同期してロックファイルを更新:
uv sync
- パッケージのビルド:
uv build
- PyPIに公開:
uv publish
注意: PyPIの認証情報を環境変数またはコマンドフラグで設定する必要があります:
- トークン:
--token
またはUV_PUBLISH_TOKEN
- またはユーザー名/パスワード:
--username
/UV_PUBLISH_USERNAME
と--password
/UV_PUBLISH_PASSWORD
Leave a Comment
Frequently Asked Questions
What is MCP?
MCP (Model Context Protocol) is an open protocol that standardizes how applications provide context to LLMs. Think of MCP like a USB-C port for AI applications, providing a standardized way to connect AI models to different data sources and tools.
What are MCP Servers?
MCP Servers are lightweight programs that expose specific capabilities through the standardized Model Context Protocol. They act as bridges between LLMs like Claude and various data sources or services, allowing secure access to files, databases, APIs, and other resources.
How do MCP Servers work?
MCP Servers follow a client-server architecture where a host application (like Claude Desktop) connects to multiple servers. Each server provides specific functionality through standardized endpoints and protocols, enabling Claude to access data and perform actions through the standardized protocol.
Are MCP Servers secure?
Yes, MCP Servers are designed with security in mind. They run locally with explicit configuration and permissions, require user approval for actions, and include built-in security features to prevent unauthorized access and ensure data privacy.
Related MCP Servers
chrisdoc hevy mcp
sylphlab pdf reader mcp
An MCP server built with Node.js/TypeScript that allows AI agents to securely read PDF files (local or URL) and extract text, metadata, or page counts. Uses pdf-parse.
aashari mcp server atlassian bitbucket
Node.js/TypeScript MCP server for Atlassian Bitbucket. Enables AI systems (LLMs) to interact with workspaces, repositories, and pull requests via tools (list, get, comment, search). Connects AI directly to version control workflows through the standard MCP interface.
aashari mcp server atlassian confluence
Node.js/TypeScript MCP server for Atlassian Confluence. Provides tools enabling AI systems (LLMs) to list/get spaces & pages (content formatted as Markdown) and search via CQL. Connects AI seamlessly to Confluence knowledge bases using the standard MCP interface.
prisma prisma
Next-generation ORM for Node.js & TypeScript | PostgreSQL, MySQL, MariaDB, SQL Server, SQLite, MongoDB and CockroachDB
Zzzccs123 mcp sentry
mcp sentry for typescript sdk
zhuzhoulin dify mcp server
zhongmingyuan mcp my mac
zhixiaoqiang desktop image manager mcp
MCP 服务器,用于管理桌面图片、查看详情、压缩、移动等(完全让Trae实现)
zhixiaoqiang antd components mcp
An MCP service for Ant Design components query | 一个减少 Ant Design 组件代码生成幻觉的 MCP 服务,包含系统提示词、组件文档、API 文档、代码示例和更新日志查询
Submit Your MCP Server
Share your MCP server with the community
Submit Now