CAT
/MCP
SkillsMCPMarketplacesDigestToolsAdvertise

This week in Claude

Every Monday: Claude Code, Agent SDK, MCP, and the Anthropic platform moves worth your time.

Skills by Category
Frontend DevelopmentBackend & APIsTesting & QASecurityDevOps & CI/CDGit & Pull RequestsDocumentationCode Review & QualityAI & Agent BuildingSkill Development
MCP Servers by Category
Sales & MarketingWeb & Browser AutomationDatabasesAI & LLM ToolsCloud & InfrastructureCommunication & MessagingDeveloper ToolsDesign & CreativeDocuments & KnowledgeSearch & Web Crawling
Marketplaces by Category
AI Agents & OrchestrationLLM IntegrationDevelopment ToolsFrontend & UIBackend & APIsDatabasesTesting & Code QualityDevOps & CloudSecurity & ComplianceGit & Version Control

Cross AI Tools

Discover Claude Code plugins, extensions, and tools. Automatically updated directory of Anthropic Claude AI marketplaces with development tools, productivity plugins, and integrations.

Resources

  • Browse Skills
  • Browse MCP Servers
  • Browse Marketplaces
  • Plugins Reference

Community

  • About
  • Tools
  • Feedback
  • Privacy Policy
  • Advertise

Built for the Claude Code community with Claude Code by @mertduzgun

Independent project, not affiliated with Anthropic

Shopify

pipeworx-io/mcp-shopify
36 toolsHTTPregistry active
Summary

Wraps the Shopify Admin REST API (2024-01 version) to give Claude access to your store's products, orders, and customers. You get five straightforward tools: list and fetch products by ID, list and fetch orders with optional status filtering, and list customers. It's part of the Pipeworx gateway system, which means you can either use it standalone or access it through their unified gateway alongside 673+ other data sources. The ask_pipeworx interface lets you query in plain English instead of calling tools directly. Runs over streamable HTTP, so no local installation needed. Reach for this when you want Claude to answer questions about inventory, check order details, or pull customer data without building your own Shopify integration.

CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →

Tools

Public tool metadata for what this MCP can expose to an agent.

36 tools
SHOPIFY_ADD_PRODUCT_TO_COLLECTIONAdds a product to an existing *custom collection*, optionally specifying its `position` if the collection is manually sorted.3 params

Adds a product to an existing *custom collection*, optionally specifying its `position` if the collection is manually sorted.

Parameters* required
positioninteger
Optional 1-based position if the custom collection is manually sorted; product is added to the end if unspecified or collection isn't manually sorted.
product_idinteger
Identifier of the product to add.
collection_idinteger
Identifier of the *custom collection*.
SHOPIFY_COUNT_PRODUCT_IMAGESRetrieves the total count of images for a Shopify product, useful for inventory management or display logic; the provided `product_id` must exist in the store.1 params

Retrieves the total count of images for a Shopify product, useful for inventory management or display logic; the provided `product_id` must exist in the store.

Parameters* required
product_idstring
The unique identifier for the Shopify product whose images are to be counted.
SHOPIFY_CREATE_CUSTOM_COLLECTIONCreates a new custom collection in a Shopify store, requiring a unique title for manually curated product groupings (e.g., 'New Arrivals', 'Seasonal Specials').1 params

Creates a new custom collection in a Shopify store, requiring a unique title for manually curated product groupings (e.g., 'New Arrivals', 'Seasonal Specials').

Parameters* required
titlestring
Unique title for the custom collection, visible to customers and used for product organization.
SHOPIFY_CREATE_CUSTOMERTool to create a new customer in Shopify. Use when you need to add a new customer record to the store.12 params

Tool to create a new customer in Shopify. Use when you need to add a new customer record to the store.

Parameters* required
notestring
An optional note about the customer.
tagsstring
A comma-separated string of tags to associate with the customer.
emailstring
The customer's unique email address.
phonestring
The customer's phone number (E.164 format recommended).
passwordstring
The customer's password. If provided, password_confirmation is also required.
addressesarray
A list of addresses for the customer.
last_namestring
The customer's last name.
first_namestring
The customer's first name.
verified_emailboolean
Whether the customer has verified their email address.
send_email_inviteboolean
If true, sends the customer an email invite to create an account.
send_email_welcomeboolean
Whether to send the customer a welcome email. Defaults to true. If send_email_invite is true, this can be set to false.default: true
password_confirmationstring
Confirmation of the customer's password. Required if password is provided.
SHOPIFY_CREATE_ORDERCreates a new order in Shopify, typically requiring line items; if `customer_id` is provided, it must correspond to an existing customer.5 params

Creates a new order in Shopify, typically requiring line items; if `customer_id` is provided, it must correspond to an existing customer.

Parameters* required
currencystring
The three-letter ISO 4217 currency code for the amounts in the order (e.g., USD, CAD, EUR).
total_taxnumber
The total amount of tax for the order. This should be a numeric value representing the sum of all taxes.
line_itemsarray
A list of line item objects, each representing an item in the order. Each object should specify at least a `variant_id` (or `product_id`) and `quantity`. Other common fields include `price` and `title`. At least one line item is required.
customer_idstring
The unique identifier of the customer associated with this order. If provided, the order will be linked to this customer. This field is optional.
transactionsarray
A list of transaction objects associated with the order, typically representing payment information. Each object usually includes `kind` (e.g., 'sale', 'authorization'), `amount`, `status`, and `gateway`.
SHOPIFY_CREATE_PRODUCTCreates a new product in a Shopify store; a product title is generally required.5 params

Creates a new product in a Shopify store; a product title is generally required.

Parameters* required
titlestring
The title of the product, typically required by Shopify.
vendorstring
The name of the product's vendor or manufacturer.
variantsarray
Product variants. Common keys include 'price', 'sku', 'option1', 'option2', 'inventory_quantity'. At least one variant is typically required; if not provided, Shopify might create a default one.
body_htmlstring
A detailed description of the product, which can include HTML formatting for rich text.
product_typestring
A category for the product, used for filtering and organizing products in Shopify.
SHOPIFY_CREATE_PRODUCT_IMAGETool to create a new product image for a given product. Use when you need to add an image to a product by providing the image source URL or attachment.2 params

Tool to create a new product image for a given product. Use when you need to add an image to a product by providing the image source URL or attachment.

Parameters* required
imageobject
An object containing the image details.
product_idstring
The ID of the product to associate the image with.
SHOPIFY_CREATE_PRODUCT_METAFIELDCreates a new metafield for a specific Shopify product.6 params

Creates a new metafield for a specific Shopify product.

Parameters* required
keystring
The key for the metafield. Must be at least 3 characters long.
typestring
The value type of the metafield. Defaults to single_line_text_field.default: single_line_text_field
valuestring
The value for the metafield.
namespacestring
The namespace for the metafield. Must be at least 3 characters long.
product_idstring
The unique identifier of the Shopify product to add a metafield to.
descriptionstring
A description of the information that the metafield contains.
SHOPIFY_DELETE_CUSTOM_COLLECTIONPermanently deletes a custom collection from a Shopify store using its `collection_id`; this action is irreversible and requires a valid, existing `collection_id`.1 params

Permanently deletes a custom collection from a Shopify store using its `collection_id`; this action is irreversible and requires a valid, existing `collection_id`.

Parameters* required
collection_idstring
The unique identifier for the custom collection that needs to be deleted. This ID is a numerical string assigned by Shopify when the collection is created.
SHOPIFY_DELETE_PRODUCTDeletes a specific, existing product from a Shopify store using its unique product ID; this action is irreversible.1 params

Deletes a specific, existing product from a Shopify store using its unique product ID; this action is irreversible.

Parameters* required
idstring
The unique identifier of the Shopify product to be deleted. This ID is essential for targeting the correct product for removal.
SHOPIFY_DELETE_PRODUCT_IMAGEDeletes a specific image from a product in Shopify, requiring the `product_id` of an existing product and the `image_id` of an image currently associated with that product.2 params

Deletes a specific image from a product in Shopify, requiring the `product_id` of an existing product and the `image_id` of an image currently associated with that product.

Parameters* required
image_idstring
The unique identifier of the specific product image to be deleted.
product_idstring
The unique identifier of the product from which the image is to be deleted.
SHOPIFY_DELETE_PRODUCT_METAFIELDDeletes a specific metafield from a Shopify product using the product ID and metafield ID.2 params

Deletes a specific metafield from a Shopify product using the product ID and metafield ID.

Parameters* required
product_idstring
The unique identifier of the Shopify product.
metafield_idstring
The unique identifier of the metafield to delete.
SHOPIFY_GET_ALL_CUSTOMERSRetrieves customer records from a Shopify store, with options for filtering, selecting specific fields, and paginating through the results.8 params

Retrieves customer records from a Shopify store, with options for filtering, selecting specific fields, and paginating through the results.

Parameters* required
idsarray
A list of specific customer IDs to retrieve. If empty, all customers (matching other filters) will be retrieved.
limitinteger
The maximum number of customers to retrieve. Defaults to 50, with a maximum value of 250.default: 50
fieldsstring
A comma-separated list of customer fields to include in the response (e.g., 'id,email,first_name'). By default, all fields are returned.default:
since_idstring
Retrieve only customers with an ID greater than this specified ID. This is used for paginating through results.default:
created_at_maxstring
Filter customers created before or on this date. Format: YYYY-MM-DD or ISO 8601 datetime string (e.g., '2023-10-26T10:00:00-05:00').default:
created_at_minstring
Filter customers created after or on this date. Format: YYYY-MM-DD or ISO 8601 datetime string (e.g., '2023-10-26T10:00:00-05:00').default:
updated_at_maxstring
Filter customers last updated before or on this date. Format: YYYY-MM-DD or ISO 8601 datetime string.default:
updated_at_minstring
Filter customers last updated after or on this date. Format: YYYY-MM-DD or ISO 8601 datetime string.default:
SHOPIFY_GET_COLLECTION_BY_IDRetrieves a specific Shopify collection by its `collection_id`, optionally filtering returned data to specified `fields`.2 params

Retrieves a specific Shopify collection by its `collection_id`, optionally filtering returned data to specified `fields`.

Parameters* required
fieldsstring
Comma-separated list of fields to retrieve; if omitted, all fields are returned. E.g., 'id,title,handle'.
collection_idstring
The unique identifier of the Shopify collection to retrieve.
SHOPIFY_GET_COLLECTSRetrieves a list of collects from a Shopify store, where a collect links a product to a custom collection.3 params

Retrieves a list of collects from a Shopify store, where a collect links a product to a custom collection.

Parameters* required
limitinteger
Maximum number of collects to retrieve (1-250).default: 50
fieldsstring
Comma-separated list of fields to retrieve (e.g., `id,collection_id,product_id`); if unspecified, all fields are returned.
since_idinteger
Retrieve only collects created after this ID, for pagination.
SHOPIFY_GET_COLLECTS_COUNTRetrieves the total count of collects (product-to-collection associations) in a Shopify store.

Retrieves the total count of collects (product-to-collection associations) in a Shopify store.

No parameter schema in public metadata yet.

SHOPIFY_GET_CUSTOM_COLLECTIONSRetrieves a list of custom collections from a Shopify store, optionally filtered by IDs, product ID, or handle.4 params

Retrieves a list of custom collections from a Shopify store, optionally filtered by IDs, product ID, or handle.

Parameters* required
idsstring
A comma-separated string of custom collection IDs to retrieve.
limitinteger
The maximum number of custom collections to return (between 1 and 250).default: 50
handlestring
Filter results by the custom collection's unique, human-readable string identifier (e.g., 'summer-specials').
product_idinteger
Filter results to custom collections that contain a specific product ID.
SHOPIFY_GET_CUSTOM_COLLECTIONS_COUNTRetrieves the total number of custom collections in a Shopify store.

Retrieves the total number of custom collections in a Shopify store.

No parameter schema in public metadata yet.

SHOPIFY_GET_CUSTOMERRetrieves detailed information for a specific customer from a Shopify store, provided their valid and existing `customer_id`.1 params

Retrieves detailed information for a specific customer from a Shopify store, provided their valid and existing `customer_id`.

Parameters* required
customer_idstring
The unique identifier for the customer in Shopify.
SHOPIFY_GET_CUSTOMER_ORDERSRetrieves all orders for a specific, existing customer in Shopify using their unique customer ID.1 params

Retrieves all orders for a specific, existing customer in Shopify using their unique customer ID.

Parameters* required
customer_idstring
Unique identifier for the customer whose orders are to be retrieved.
SHOPIFY_GET_ORDER_LISTRetrieves a list of orders from Shopify with optional filters and pagination.16 params

Retrieves a list of orders from Shopify with optional filters and pagination.

Parameters* required
idsstring
Comma-separated list of order IDs to return. You may provide a list of integers; it will be converted to a comma-separated string.
namestring
Filter orders by name (for example, #1001).
limitinteger
Maximum number of results per page (default 50, maximum 250).
fieldsstring
Comma-separated list of fields to include in the response. You may provide a list; it will be converted to a comma-separated string.
statusstring
Filter by order status. Valid values: open, closed, cancelled, any.
since_idinteger
Return orders with IDs greater than this ID.
page_infostring
Cursor for pagination. When using page_info for cursor pagination, only limit may accompany it.
created_at_maxstring
Show orders created at or before this ISO 8601 timestamp (for example, 2024-12-31T23:59:59Z).
created_at_minstring
Show orders created at or after this ISO 8601 timestamp (for example, 2024-01-01T00:00:00Z).
updated_at_maxstring
Show orders last updated at or before this ISO 8601 timestamp.
updated_at_minstring
Show orders last updated at or after this ISO 8601 timestamp.
financial_statusstring
Filter by financial status. Valid values: authorized, pending, paid, partially_paid, refunded, voided, partially_refunded, any, unpaid.
processed_at_maxstring
Show orders imported at or before this ISO 8601 timestamp.
processed_at_minstring
Show orders imported at or after this ISO 8601 timestamp.
attribution_app_idstring
Show orders attributed to a specific app ID. Use 'current' to show orders for the calling app.
fulfillment_statusstring
Filter by fulfillment status. Valid values: shipped, partial, unshipped, any, unfulfilled.
SHOPIFY_GET_ORDERSBY_IDRetrieves a specific Shopify order by its unique ID, which must correspond to an existing order.2 params

Retrieves a specific Shopify order by its unique ID, which must correspond to an existing order.

Parameters* required
fieldsstring
Comma-separated list of fields to include in the response (e.g., 'id,line_items').
order_idstring
The unique identifier of the Shopify order to retrieve.
SHOPIFY_GET_ORDERS_WITH_FILTERSRetrieves Shopify orders filtered by dates and other filters. Uses server-side filtering.16 params

Retrieves Shopify orders filtered by dates and other filters. Uses server-side filtering.

Parameters* required
idsstring
Comma-separated list of numeric order IDs to retrieve.
namestring
Filter by order name (e.g., #1001).
limitinteger
Maximum number of orders to return per page (1-250).
fieldsstring
Comma-separated list of order fields to include in the response.
statusstring
Filter by order status (open,closed,cancelled,any).
since_idinteger
Restrict results to after the specified ID.
page_infostring
A cursor for use in pagination. When present, only limit (and fields where supported) should accompany this parameter.
created_at_maxstring
Show orders created at or before this ISO 8601 timestamp.
created_at_minstring
Show orders created at or after this ISO 8601 timestamp.
updated_at_maxstring
Show orders last updated at or before this ISO 8601 timestamp.
updated_at_minstring
Show orders last updated at or after this ISO 8601 timestamp.
financial_statusstring
Filter by financial status (authorized,pending,paid,partially_paid,refunded,voided,partially_refunded,any,unpaid).
processed_at_maxstring
Show orders imported/processed at or before this ISO 8601 timestamp.
processed_at_minstring
Show orders imported/processed at or after this ISO 8601 timestamp.
attribution_app_idstring
Filter to orders attributed to a given app ID; use 'current' to show orders for the calling app.
fulfillment_statusstring
Filter by fulfillment status (shipped/fulfilled,partial,unshipped/null,any,unfulfilled).
SHOPIFY_GET_PRODUCTRetrieves details for an existing Shopify product using its unique product ID.1 params

Retrieves details for an existing Shopify product using its unique product ID.

Parameters* required
product_idstring
The unique identifier of the Shopify product to be retrieved.
SHOPIFY_GET_PRODUCT_IMAGERetrieves detailed information for a specific product image, identified by its ID and its associated product ID, from a Shopify store.2 params

Retrieves detailed information for a specific product image, identified by its ID and its associated product ID, from a Shopify store.

Parameters* required
image_idstring
The unique numerical identifier of the image associated with the product.
product_idstring
The unique numerical identifier of the Shopify product.
SHOPIFY_GET_PRODUCT_IMAGESRetrieves all images for a Shopify product, specified by its `product_id` which must correspond to an existing product.3 params

Retrieves all images for a Shopify product, specified by its `product_id` which must correspond to an existing product.

Parameters* required
fieldsstring
A comma-separated list of fields to include in the response. Available fields include: id, product_id, position, created_at, updated_at, alt, width, height, src.
since_idstring
Restricts the results to product images created after the specified image ID. Useful for pagination.
product_idstring
The unique identifier of the Shopify product for which to retrieve images.
SHOPIFY_GET_PRODUCT_METAFIELDRetrieves a specific metafield for a Shopify product using the product ID and metafield ID.2 params

Retrieves a specific metafield for a Shopify product using the product ID and metafield ID.

Parameters* required
product_idstring
The unique identifier of the Shopify product.
metafield_idstring
The unique identifier of the metafield to retrieve.
SHOPIFY_GET_PRODUCT_METAFIELDSRetrieves all metafields for a specific Shopify product. Metafields can be filtered by namespace and/or key.3 params

Retrieves all metafields for a specific Shopify product. Metafields can be filtered by namespace and/or key.

Parameters* required
keystring
Filter metafields by key. If omitted, returns all metafields (or all within namespace if specified).
namespacestring
Filter metafields by namespace. If omitted, returns all metafields.
product_idstring
The unique identifier of the Shopify product to retrieve metafields for.
SHOPIFY_GET_PRODUCTSRetrieves a list of products from a Shopify store.1 params

Retrieves a list of products from a Shopify store.

Parameters* required
idsstring
A comma-separated string of product IDs to retrieve. If this field is not provided (i.e., defaults to `None`), all products will be fetched.
SHOPIFY_GET_PRODUCTS_COUNTRetrieves the total, unfiltered count of all products in a Shopify store.

Retrieves the total, unfiltered count of all products in a Shopify store.

No parameter schema in public metadata yet.

SHOPIFY_GET_PRODUCTS_IN_COLLECTIONRetrieves all products within a specified Shopify collection, requiring a valid `collection_id`.2 params

Retrieves all products within a specified Shopify collection, requiring a valid `collection_id`.

Parameters* required
limitinteger
Maximum number of products to retrieve.default: 50
collection_idstring
Identifier for the Shopify collection. Often found in the collection's Shopify admin URL.
SHOPIFY_GET_PRODUCTS_PAGINATEDTool to list products with Shopify cursor-based pagination. Use when iterating over large product catalogs via the Link header.3 params

Tool to list products with Shopify cursor-based pagination. Use when iterating over large product catalogs via the Link header.

Parameters* required
limitinteger
Number of products per page. Defaults to 50; maximum 250.default: 50
fieldsstring
Comma-separated list of product fields to include in the response.
page_infostring
Cursor token for next or previous page. Use the token value from the Link header.
SHOPIFY_GET_SHOP_DETAILSRetrieves comprehensive administrative information about the authenticated Shopify store, as defined by the Shopify API.

Retrieves comprehensive administrative information about the authenticated Shopify store, as defined by the Shopify API.

No parameter schema in public metadata yet.

SHOPIFY_GRAPH_QL_QUERYExecutes a GraphQL query against the Shopify Admin API. This allows for flexible data retrieval and mutations including metafields operations.2 params

Executes a GraphQL query against the Shopify Admin API. This allows for flexible data retrieval and mutations including metafields operations.

Parameters* required
querystring
The GraphQL query string to execute against the Shopify Admin API.
variablesobject
Variables to be used in the GraphQL query as a dictionary.
SHOPIFY_UPDATE_ORDERUpdates the phone number for an existing Shopify order, identified by its ID; pass `phone=None` to remove the current phone number.2 params

Updates the phone number for an existing Shopify order, identified by its ID; pass `phone=None` to remove the current phone number.

Parameters* required
idinteger
The unique identifier of the Shopify order whose phone number is to be updated.
phonestring
The new phone number for the order. E.164 format (e.g., '+15551234567') is recommended for international numbers. An empty string `''` may also be used to clear it, depending on Shopify API behavior.
SHOPIFY_UPDATE_PRODUCT_METAFIELDUpdates an existing metafield for a specific Shopify product.5 params

Updates an existing metafield for a specific Shopify product.

Parameters* required
typestring
The new value type of the metafield. If not provided, the existing type will be kept.
valuestring
The new value for the metafield. If not provided, the existing value will be kept.
product_idstring
The unique identifier of the Shopify product.
descriptionstring
A new description of the information that the metafield contains. If not provided, the existing description will be kept.
metafield_idstring
The unique identifier of the metafield to update.

mcp-shopify

Shopify MCP Pack — wraps the Shopify Admin REST API (2024-01)

Part of Pipeworx — an MCP gateway connecting AI agents to 673+ live data sources.

Tools

ToolDescription
shopify_list_productsList products from a Shopify store. Returns up to 50 products by default.
shopify_get_productGet a single product by ID from a Shopify store.
shopify_list_ordersList orders from a Shopify store, optionally filtered by status.
shopify_get_orderGet a single order by ID from a Shopify store.
shopify_list_customersList customers from a Shopify store.

Quick Start

Add to your MCP client (Claude Desktop, Cursor, Windsurf, etc.):

{
  "mcpServers": {
    "shopify": {
      "url": "https://gateway.pipeworx.io/shopify/mcp"
    }
  }
}

Or connect to the full Pipeworx gateway for access to all 673+ data sources:

{
  "mcpServers": {
    "pipeworx": {
      "url": "https://gateway.pipeworx.io/mcp"
    }
  }
}

Using with ask_pipeworx

Instead of calling tools directly, you can ask questions in plain English:

ask_pipeworx({ question: "your question about Shopify data" })

The gateway picks the right tool and fills the arguments automatically.

More

  • All tools and guides
  • pipeworx.io

License

MIT

Featured
CodeRabbit
CodeRabbit
AI writes the code. CodeRabbit catches the slop.
Try For Free →
Keep your Mac awake
Keep your Mac awake
Keep your Mac awake while Claude Code and 40+ AI agents run. Sleeps when they're idle.
One time payment $9 →
Context.devContext.dev
Context.dev
Integrate web data into your AI product. One API to scrape website & brand data.
Get API Key Now →
Make your agent a DeFi expert
Make your agent a DeFi expert
Agent, run crypto. Access onchain data & trade routes via 1inch.
Install now →
Make money from your Skills
Make money from your Skills
On Capafy, your Skill runs online 24/7 as an agent product, and you get paid every time someone uses it.
Start earning →
AppSignal
AppSignal
Monitor with ease. Code with confidence.
Start Free Trial →
Categories
Finance & Commerce
Registryactive
TransportHTTP
UpdatedApr 22, 2026
View on GitHub

Related Finance & Commerce MCP Servers

View all →
Shopify Subscription Reconciliation MCP (Recharge Edition)

io.github.shelvick/shopify-subscription-reconciliation

Reconcile Shopify orders against Recharge subscription charges and Stripe payouts.
Google Ads

zleventer/google-ads-mcp

MCP server for Google Ads — 22 tools for spend diagnosis, impression share, and asset performance.
1
Meok Stripe Acp Checkout Mcp

csoai-org/meok-stripe-acp-checkout-mcp

MEOK Stripe ACP Checkout MCP — ChatGPT shopping bridge. Issues + verifies + signs Stripe Agentic
Google Ads

io.github.mharnett/google-ads

Google Ads MCP with MCC support: 35 tools for campaigns, keywords, reporting, GAQL.
Stripe Billing Mcp

csoai-org/stripe-billing-mcp

stripe-billing-mcp MCP server by MEOK AI Labs
Google Ads Mcp

co.pipeboard/google-ads-mcp

Google Ads automation with AI: analyze performance, manage campaigns, optimize bids.