{"id":50478461,"url":"https://github.com/magebitcom/magento2-mcp-catalog-tools","last_synced_at":"2026-06-01T15:05:04.629Z","repository":{"id":357182057,"uuid":"1219329491","full_name":"magebitcom/magento2-mcp-catalog-tools","owner":"magebitcom","description":"Catalog tool extension for the Magebit's Magento2 MCP module","archived":false,"fork":false,"pushed_at":"2026-05-27T08:34:39.000Z","size":149,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":0,"default_branch":"master","last_synced_at":"2026-05-27T10:21:52.244Z","etag":null,"topics":["adobe","adobe-commerce","ai","magento2","magento2-extension","magento2-module","mcp-server"],"latest_commit_sha":null,"homepage":"https://github.com/magebitcom/magento2-mcp-module","language":"PHP","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/magebitcom.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2026-04-23T19:08:47.000Z","updated_at":"2026-05-27T08:34:19.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/magebitcom/magento2-mcp-catalog-tools","commit_stats":null,"previous_names":["magebitcom/magento2-mcp-catalog-tools"],"tags_count":2,"template":false,"template_full_name":null,"purl":"pkg:github/magebitcom/magento2-mcp-catalog-tools","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/magebitcom%2Fmagento2-mcp-catalog-tools","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/magebitcom%2Fmagento2-mcp-catalog-tools/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/magebitcom%2Fmagento2-mcp-catalog-tools/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/magebitcom%2Fmagento2-mcp-catalog-tools/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/magebitcom","download_url":"https://codeload.github.com/magebitcom/magento2-mcp-catalog-tools/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/magebitcom%2Fmagento2-mcp-catalog-tools/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":33780122,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-05-26T15:22:16.424Z","status":"online","status_checked_at":"2026-06-01T02:00:06.963Z","response_time":115,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["adobe","adobe-commerce","ai","magento2","magento2-extension","magento2-module","mcp-server"],"created_at":"2026-06-01T15:05:03.243Z","updated_at":"2026-06-01T15:05:04.623Z","avatar_url":"https://github.com/magebitcom.png","language":"PHP","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Magento2 MCP - Catalog Tools\n\nThis is a sub-module for the [Magento2 MCP module](https://github.com/magebitcom/magento2-mcp-module)\n\n----\n\nCatalog-domain MCP tools for `Magebit_Mcp`. Exposes catalog **products** and\n**categories** — paginated reads, single-entity reads with field-resolver-driven\nshape, and writes (create / update / delete) wired through Magento service\ncontracts.\n\nEach tool is a thin wrapper over the corresponding Magento service contract\n(`ProductRepositoryInterface`, `CategoryRepositoryInterface`,\n`CategoryListInterface`, `StockRegistryInterface`,\n`CategoryManagementInterface`). Read responses are composed from field\nresolvers that 3rd-party modules can extend; writes go through the same\nrepositories the admin UI uses, so server-side validation and reindex hooks\nfire identically.\n\n## Install\n\n```bash\ncomposer require magebitcom/magento2-mcp-catalog-tools\nbin/magento module:enable Magebit_McpCatalogTools\nbin/magento setup:upgrade\nbin/magento setup:di:compile\nbin/magento cache:flush\n```\n\n## Tool catalog\n\n### Products (read)\n\n| Tool | What it does |\n|---|---|\n| `catalog.product.list` | Paginated product search; filter by sku (exact / `*glob*` / array), name substring, status, visibility, type_id, attribute_set_id, price range, qty range, category_id, website_id, created_at range, updated_at range. |\n| `catalog.product.get` | Single product by numeric id or SKU. Default response includes identity, state, pricing, tier prices, stock, categories (ids + names), websites, media gallery, links, configurable / bundle option metadata, custom attributes, and timestamps; narrow with `fields` / `exclude`. |\n\n### Categories (read)\n\n| Tool | What it does |\n|---|---|\n| `catalog.category.list` | Paginated category search; filter by name substring, is_active, include_in_menu, parent_id, level range. |\n| `catalog.category.get` | Single category by numeric id; tree metadata, content, meta, state, plus the product ids assigned to the category (drop with `exclude: [\"products\"]`). |\n\n### Products (write)\n\nWrite tools require the global `magebit_mcp/general/allow_writes` flag **and**\nthe token's own `allow_writes` flag to be `1`. All writes require explicit\nconfirmation so MCP clients prompt before firing.\n\n| Tool | Confirm? | What it does |\n|---|---|---|\n| `catalog.product.create` | yes | Create a product. Required: sku, name, price, attribute_set_id, type_id, status, visibility (plus weight for physical types). Accepts top-level scalars (description, url_key, tax_class_id, meta_*) plus `custom_attributes`, `website_ids`, `category_ids`. |\n| `catalog.product.update` | yes | PATCH-style update by id or sku; only fields you provide are touched. Use `new_sku` to rename. |\n| `catalog.product.delete` | yes | Permanently delete a product. |\n\n### Categories (write)\n\n| Tool | Confirm? | What it does |\n|---|---|---|\n| `catalog.category.create` | yes | Create a category under an existing parent. |\n| `catalog.category.update` | yes | PATCH-style update by id. Changing `parent_id` triggers a tree move via `CategoryManagementInterface::move()` (path / level rebuild); use `after_id` to control sibling ordering at the destination. |\n| `catalog.category.delete` | yes | Permanently delete a category and its descendants. Cascades. |\n\nEvery write tool also implements `Magebit\\Mcp\\Api\\UnderlyingAclAwareInterface`\nwith `Magento_Catalog::products` / `Magento_Catalog::categories` as the\nunderlying Magento admin resource, so they block calls from admins who\nwouldn't be allowed to perform the same action in the admin UI.\n\n## Extending\n\nSee `docs/EXTENDING.md` for:\n- adding a new field to any tool response via `ProductFieldResolverInterface`\n  / `CategoryFieldResolverInterface`;\n- adding a new filter to `catalog.product.list` / `catalog.category.list`\n  via `ProductFilterTranslatorInterface` /\n  `CategoryFilterTranslatorInterface`;\n- the ACL layering rules for custom write tools.\n\n## License\n\nReleased under the [MIT License](LICENSE).\n\n---\n\n![magebit (1)](https://github.com/user-attachments/assets/cdc904ce-e839-40a0-a86f-792f7ab7961f)\n\n*Have questions or need help? Contact us at info@magebit.com*\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmagebitcom%2Fmagento2-mcp-catalog-tools","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmagebitcom%2Fmagento2-mcp-catalog-tools","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmagebitcom%2Fmagento2-mcp-catalog-tools/lists"}