Skip to main content
Glama
rlaalsdn4564

Korea E-commerce Integrated Channel MCP

by rlaalsdn4564

Korea E-commerce Integrated Channel MCP

상품이 10개일 때는 판매자센터를 몇 번 오가며 직접 등록할 수 있습니다. 상품이 1,000개, 10,000개가 되면 이야기가 달라집니다. 판매처마다 화면이 다르고, 같은 가격과 재고를 여러 번 입력해야 하며, 한 곳에서 빠뜨린 수정 사항이 그대로 판매 사고로 이어지기도 합니다.

Korea E-commerce Integrated Channel MCP는 이런 반복 작업을 한곳으로 모으기 위해 만든 복합 MCP 서버입니다. 한 번 정리한 상품 정보를 네이버 스마트스토어, 쿠팡, 11번가, 지마켓·옥션에 맞춰 등록하고, 이후 수정·판매중지·재개·삭제도 같은 방식으로 처리합니다.

MCP는 Codex, Claude 같은 AI 에이전트가 외부 프로그램을 도구처럼 호출할 수 있게 해주는 연결 방식입니다. 판매자는 여러 관리자 화면을 하나씩 조작하는 대신 에이전트에게 원하는 작업을 설명하고, 실제 반영 전에 결과를 확인할 수 있습니다.

어떤 일을 대신하나요?

지금까지 하던 일

이 MCP를 연결한 뒤

판매처마다 로그인해서 같은 상품을 다시 입력

상품 정보를 한 번 전달하고 여러 판매처에 등록

가격이나 재고가 바뀔 때마다 각 화면을 찾아 수정

같은 상품을 선택해 여러 판매처를 함께 수정

품절 상품을 판매처별로 찾아 판매중지

한 번의 요청으로 판매중지 또는 판매재개

어느 판매처에서 실패했는지 따로 기록

판매처별 성공과 실패 결과를 한곳에서 확인

실수로 다른 상품을 수정하거나 삭제할까 걱정

실제 반영 전 미리보기와 별도 승인을 거쳐 실행

Related MCP server: coupang-browser-mcp

이런 분에게 맞습니다

  • 여러 국내 판매처에서 같은 상품을 판매하는 셀러

  • 상품 수가 많아 판매자센터의 반복 입력이 부담스러운 운영팀

  • 엑셀이나 내부 상품 DB를 바탕으로 등록 작업을 자동화하려는 개발자

  • AI 에이전트에게 상품 운영 업무를 맡기되, 실제 반영 전에는 직접 확인하고 싶은 팀

지원 판매처

판매처

현재 지원하는 작업

상태

네이버 스마트스토어

등록, 수정, 판매중지, 재개, 삭제

판매자용 커머스API 연결 코드 포함

쿠팡

등록, 수정, 판매중지, 재개, 삭제

옵션 상품까지 판매 상태 변경

11번가

등록, 수정, 판매중지, 재개, 삭제

판매자 계정별 규격 확인이 필요한 실험 단계

지마켓·옥션

등록, 수정, 판매중지, 재개, 삭제

ESM 통합 상품 기준

실제 판매자 계정의 카테고리, 배송지, 반품지, 상품고시 번호는 계정마다 다릅니다. 저장소에 연결 코드는 들어 있지만, 바로 실상품을 올리는 완성형 서비스는 아닙니다. 처음에는 폐기 가능한 테스트 상품 한 개로 연결을 확인해야 합니다.

네이버 쇼핑 API가 종료된다던데요?

2026년 7월 31일 종료되는 API는 상품 검색 결과를 가져오던 네이버 개발자센터의 검색 > 쇼핑 API입니다. 이 프로젝트가 사용하는 것은 스마트스토어 판매자가 상품을 등록하고 수정하는 커머스API라서 서로 다른 서비스입니다.

네이버 커머스API는 2026년 7월 7일에도 2.82.0 문서가 갱신됐고, 현재 상품 등록·수정·삭제 기능을 제공하고 있습니다. 따라서 스마트스토어 연결은 그대로 유지합니다.

실제 사용 흐름

  1. 판매처별 API 자격증명을 로컬 환경에 넣습니다.

  2. 각 계정에서 쓰는 카테고리, 배송 정책, 상품고시 정보를 판매처별 양식에 채웁니다.

  3. 에이전트에게 상품과 올릴 판매처를 말하고 미리보기를 요청합니다.

  4. 내용이 맞으면 미리보기에서 받은 승인값으로 실제 등록을 실행합니다.

에이전트에는 이렇게 요청할 수 있습니다.

SKU DEMO-001 상품을 스마트스토어와 쿠팡에 올릴 준비를 해줘. 실제 등록은 하지 말고 판매처별로 어떤 내용이 전송될지 먼저 보여줘.

미리보기를 확인한 뒤에는 같은 요청을 그대로 실행합니다. 상품명, 가격, 대상 판매처가 바뀌면 다시 미리보기를 받아야 합니다. 영구 삭제에는 한 번 더 확인 절차가 붙습니다.

5분 안에 로컬에서 열기

Python 3.11 이상이 필요합니다.

git clone https://github.com/minwoo19930301/korea-ecommerce-integrated-channel-mcp.git
cd korea-ecommerce-integrated-channel-mcp
python -m venv .venv
source .venv/bin/activate
pip install -e '.[dev]'
cp .env.example .env
pytest -q

서버 실행:

korea-ecommerce-integrated-channel-mcp

자격증명을 넣지 않아도 미리보기와 테스트는 실행할 수 있습니다. 실제 판매처 반영은 기본값으로 꺼져 있습니다.

설치 경로, 환경변수, MCP 클라이언트 설정은 설치 가이드에 정리했습니다.

현재 한계

  • 실제 판매자 자격증명이 없어 실상품 등록 테스트는 하지 않았습니다.

  • 판매처마다 필수값이 달라 계정에 맞는 등록 양식을 먼저 만들어야 합니다.

  • 11번가는 판매자 계약에 따라 요청 주소와 XML 형식이 달라질 수 있습니다.

  • 여러 판매처에 동시에 요청하더라도 한 판매처의 실패를 다른 판매처에서 자동으로 되돌리지는 않습니다.

개발 구조, 안전 규칙, 테스트와 배포 절차는 AGENTS.md를 참고하세요. 세부 데이터 흐름은 아키텍처 문서, 보안 관련 주의사항은 SECURITY.md에 있습니다.

라이선스

MIT

Available Tools

11 tools
channel_capabilitiesList seller-channel capabilitiesA
Read-onlyIdempotent

Show installed connectors, configuration state, and supported operations.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.1/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint:false, which the description confirms with 'Show'. The description adds specific context about the result contents (connectors, configuration state, operations) beyond what annotations provide, though it doesn't disclose any additional behaviors like authentication or caching expectations. Given annotation coverage, this is solid.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, focused sentence that immediately conveys the purpose without any redundancy or filler. It is perfectly concise and front-loaded.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given no parameters, a straightforward purpose, and an output schema, the description is completely adequate. The sibling tool context does not require additional disambiguation because the description already specifies its unique scope.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has zero parameters, so there is no parameter semantics to explain. A baseline score of 4 applies because the description need not compensate for any schema gaps.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool lists seller-channel capabilities, specifying the types of information shown (installed connectors, configuration state, supported operations). This distinguishes it from sibling tools like channel_health which likely focuses on health status.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance is provided on when to use this tool instead of alternatives. It doesn't mention exclusions, prerequisites, or contrast with sibling tools. The readOnlyHint annotation implies safe usage, but the description itself lacks any usage direction.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

channel_healthCheck seller-channel healthB
Read-onlyIdempotent

Report configuration and connector-supported checks; inspect network_checked.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

B3.3/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint, openWorldHint, and idempotentHint, so the description only needs to add context beyond those. It adds that the tool reports configuration/connector checks and inspects network_checked, but provides little detail on what those checks entail or how results are shaped.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single compact sentence with no redundant phrasing, making it easy to parse. It could be slightly more structured or complete, but it is appropriately brief for a tool without parameters.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the presence of an output schema, annotations, and no parameters, the description is minimally acceptable. However, it does not clarify what distinguishes this tool from 'channel_capabilities' or what 'network_checked' semantically means, leaving some context gaps for an agent deciding when to invoke it.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has zero parameters and schema description coverage is 100%, so the description carries no parameter burden. The baseline for no-parameter tools is 4.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('Report') and identifies a resource ('configuration and connector-supported checks'), with an additional inspectable field 'network_checked.' It is clear enough about health reporting but does not explicitly differentiate from the sibling 'channel_capabilities' tool.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

There is no guidance on when to use this tool versus alternatives such as 'channel_capabilities,' 'profile_list,' or 'product_get.' No exclusions, prerequisites, or decision rules are provided, so the agent must infer usage context.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

operation_getGet a fan-out operation resultA
Read-onlyIdempotent

Read a persisted operation, including per-channel partial failures.

ParametersJSON Schema
NameRequiredDescriptionDefault
job_idYes

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.1/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare read-only, non-destructive, idempotent behavior. The description adds meaningful context about per-channel partial failures, which is not covered by annotations and helps the agent understand potential response complexity. No contradiction with annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

A single, front-loaded sentence with no wasted words. The description conveys the essential purpose in one line and earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple read tool with one self-explanatory parameter and an output schema, the description provides the core purpose and a notable behavioral detail. The lack of explicit parameter semantics is a minor gap, but the overall context is sufficient for correct invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The only parameter, job_id, has no schema description (0% coverage) and the tool description does not explicitly explain its meaning or format. While the name strongly implies it identifies the operation, the description does not compensate for the schema gap.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the verb and resource: 'Read a persisted operation' with the specific detail of 'per-channel partial failures.' This distinguishes it from sibling tools like product_get, which target products rather than operations.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies when to use the tool (to retrieve a fan-out operation result) and even highlights a specific use case (checking per-channel partial failures). It does not explicitly mention alternatives or exclusions, but the context is clear enough given the sibling names.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

product_deleteDelete a product across channelsB
Destructive

Preview or permanently delete a mapped product across selected channels.

ParametersJSON Schema
NameRequiredDescriptionDefault
commandYes

Output Schema

ParametersJSON Schema
NameRequiredDescription
skuYes
job_idYes
dry_runYes
resultsNo
operationYes
started_atNo
finished_atNo
approval_tokenNo
request_sha256No
approval_expires_atNo

TDQS

B3.3/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare destructiveHint=true, readOnlyHint=false, and openWorldHint=true. The description adds that it operates on 'mapped product across selected channels' and can be 'permanently' deleted, which is useful context. However, it does not disclose the approval token requirement, the two-phase confirmation flow (PREVIEW/EXECUTE), or any external side effects, leaving behavioral transparency only partially enhanced beyond annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, front-loaded sentence that immediately conveys the action ('Preview or permanently delete') and the object ('mapped product across selected channels'). It is concise with no redundant information, making it easy to parse.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Despite having an output schema and annotations, the tool is complex: it contains a nested command object with safety mechanisms (approval_token, expected_external_ids, idempotency_key) and a dual preview/execution mode. The description is far too brief to explain the required workflow—such as previewing before deleting or needing an approval token—leaving an agent without enough context to safely and correctly invoke this destructive tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters1/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, and the description does not explain any parameters such as sku, channels, confirm, dry_run, approval_token, confirm_delete, idempotency_key, or expected_external_ids. The phrase 'Preview or permanently delete' vaguely relates to the confirm/dry_run fields but gives no meaningful semantics, so an agent has no guidance on how to fill these fields correctly.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses the specific verb 'delete' and identifies the resource as 'a mapped product across selected channels,' clearly distinguishing it from sibling tools like product_update, product_stop, and product_resume. It also introduces two modes—'Preview or permanently delete'—which adds precision about the tool's capability.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies the tool is for deleting mapped products from channels, but it does not explicitly state when to prefer this over product_stop or product_resume, nor does it mention prerequisites like having a mapped product or an approval token. The usage context is implied rather than explicitly contrasted with alternatives.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

product_getGet a master product and channel mappingsA
Read-onlyIdempotent

Read the canonical product and its per-channel external identifiers.

ParametersJSON Schema
NameRequiredDescriptionDefault
skuYes

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A3.5/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, covering the safety profile. The description adds context about the return content (canonical product and per-channel external identifiers) but doesn't disclose additional behaviors like authorization requirements or rate limits.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, concise sentence that front-loads the key action and resource. It contains no redundant phrasing or filler, making it highly scannable.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's simplicity (one parameter, no nested objects), annotations, and presence of an output schema, the description sufficiently covers the core purpose and return content. The main gap is the lack of usage guidance, but that doesn't undermine completeness for this straightforward read tool.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, and the description does not compensate by explaining the 'sku' parameter. It doesn't mention what sku stands for, its format, or how it relates to the product, leaving the agent to infer from the parameter name alone.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb 'read' and a specific resource 'canonical product and its per-channel external identifiers', making it clear this is a retrieval operation. It distinguishes itself from sibling tools like product_update, product_delete, and product_publish by focusing on reading rather than mutating or publishing.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No guidance is provided about when to use this tool versus alternatives. The description only states what the tool does without mentioning any other tools, prerequisites, or scenarios where this tool is preferred.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

product_publishPublish one product to multiple channelsA

Preview or create one master product across all selected channels in parallel.

ParametersJSON Schema
NameRequiredDescriptionDefault
commandYes

Output Schema

ParametersJSON Schema
NameRequiredDescription
skuYes
job_idYes
dry_runYes
resultsNo
operationYes
started_atNo
finished_atNo
approval_tokenNo
request_sha256No
approval_expires_atNo

TDQS

A3.7/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description adds useful context beyond annotations by revealing preview/execute modes and parallel execution across channels. It does not describe per-channel failure behavior or side effects, but annotations already cover readOnly, idempotency, and destructiveness.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

A single, well-formed sentence conveys the core action and scope without wasted words. It is appropriately front-loaded and easy to parse.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The tool has a complex input schema (nested product and payload objects, approval tokens, idempotency keys) but the description is too terse to convey the full invocation workflow. It lacks guidance on preview vs execute, approval prerequisites, and handling partial failures.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

With schema description coverage at 0%, the description should compensate by explaining the command structure, but it only hints at channels and preview/execute. It does not explain confirm, approval_token, idempotency_key, or payloads.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly specifies the action (preview or create), the object (a master product), and the scope (across all selected channels in parallel). This distinguishes it from sibling tools like product_update and product_delete.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The multi-channel and preview/execute context imply its intended use, but there is no explicit guidance about when to use publish versus update, stop, or delete. No alternatives or exclusions are mentioned.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

product_resumeResume product sales across channelsB

Preview or resume a product on every selected channel.

ParametersJSON Schema
NameRequiredDescriptionDefault
commandYes

Output Schema

ParametersJSON Schema
NameRequiredDescription
skuYes
job_idYes
dry_runYes
resultsNo
operationYes
started_atNo
finished_atNo
approval_tokenNo
request_sha256No
approval_expires_atNo

TDQS

B3.3/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations indicate readOnlyHint=false (mutation) and openWorldHint=true (external side effects), but the description adds no behavioral context—it doesn't warn about irreversible changes, approval token requirements, or the difference between preview (dry run) and execute. It merely restates the action without disclosing side effects.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, front-loaded sentence that efficiently conveys the core action. No wasted words or redundant details.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Despite having an output schema, the tool has a complex command object with multiple required parameters, a dual preview/execute mode, and external side effects. This one-sentence description does not explain the workflow, approval process, or how it differs from other lifecycle operations, making it insufficient for correct invocation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, and the description only clarifies the 'channels' parameter ('every selected channel'). Critical parameters like sku, confirm, idempotency_key, and approval_token are not explained, so the description does not compensate for the schema's lack of detail.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description specifies a clear verb+resource+scope: 'Preview or resume a product on every selected channel.' It distinguishes from siblings like product_stop and product_publish by focusing on the 'resume' action, which is a distinct lifecycle operation.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage is for resuming a paused product on selected channels, but does not explicitly state when to use it versus alternatives like product_publish or product_stop, nor any exclusions. Context from the name/title suggests the intended scenario, but explicit guidance is missing.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

product_stopStop product sales across channelsC
Destructive

Preview or stop a product on every selected channel.

ParametersJSON Schema
NameRequiredDescriptionDefault
commandYes

Output Schema

ParametersJSON Schema
NameRequiredDescription
skuYes
job_idYes
dry_runYes
resultsNo
operationYes
started_atNo
finished_atNo
approval_tokenNo
request_sha256No
approval_expires_atNo

TDQS

C2.7/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already indicate destructiveHint=true and readOnlyHint=false, so the agent knows this is a mutating operation. The description adds the 'Preview' option, suggesting a non-destructive dry-run mode, which provides some behavioral context. However, it doesn't disclose what exactly gets destroyed, approvals required, or external side effects, so it adds limited value beyond annotations.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, concise sentence with no redundant words. It is front-loaded with the action ('Preview or stop') and resource ('product'), making it easy to parse. While it is brief, it is well-structured and to the point, though it misses details that might have made it even more useful.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the complex nested schema with 7+ parameters, safety mechanisms (idempotency key, approval token, expected external IDs), and an output schema, the description is far too sparse. It fails to explain the preview/execute workflow, multi-channel behavior, approval requirements, or any safety considerations. The description covers only the basic action, leaving the agent without essential operational context.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters1/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0%, and the description does not compensate by explaining any parameters. It only mentions 'every selected channel' which relates to the 'channels' parameter, but leaves sku, confirm, dry_run, approval_token, idempotency_key, and expected_external_ids undefined. The schema has minimal descriptions beyond field names, so the agent gets no semantic guidance for these critical parameters.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's function: to preview or stop a product on selected channels. The verb 'stop' and resource 'product' distinguish it from sibling tools like product_publish or product_resume, though it doesn't explicitly name them. The 'preview' aspect adds a mode, which is slightly ambiguous but still conveys the primary intent.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description offers no guidance on when to use this tool versus alternatives. It implies usage for stopping product sales, but does not mention when not to use it, prerequisites, or contrast with sibling tools like product_delete or product_resume. There is no explicit context for selecting this tool over others.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

product_updateUpdate one product across multiple channelsA

Preview or update a mapped product across selected channels in parallel.

ParametersJSON Schema
NameRequiredDescriptionDefault
commandYes

Output Schema

ParametersJSON Schema
NameRequiredDescription
skuYes
job_idYes
dry_runYes
resultsNo
operationYes
started_atNo
finished_atNo
approval_tokenNo
request_sha256No
approval_expires_atNo

TDQS

A4/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

It discloses dual-mode behavior (preview vs update), parallel execution, and the prerequisite that the product must be mapped—context not present in annotations. It does not mention approval token requirements or side effects beyond annotations, but annotations already signal mutation and non-idempotence.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

A single front-loaded sentence conveys the operation mode, target, and scope with no redundant wording. Every word earns its place.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The one-line description is enough for tool selection but under-specifies the execution workflow (confirm/dry_run, idempotency_key, approval_token) for a tool with rich side effects. The input/output schemas and annotations reduce the burden, so a 3 is appropriate.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0% and the description does not explain the 'command' object or its fields. It only hints at 'channels' and 'preview/update' semantics, leaving the agent to rely entirely on the schema.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses a specific verb ('preview or update') and resource ('mapped product') across selected channels, clearly distinguishing this from sibling publish/delete/stop/resume operations. It also conveys the dual-mode nature and the parallel execution scope.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

It clearly implies use for modifying an existing mapped product on one or more channels, and mentions a preview mode for safe evaluation. It does not explicitly name alternatives or exclusions, so it stops short of a 5.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

profile_listList reviewed channel payload profilesA
Read-onlyIdempotent

List local payload profiles that can turn one master product into channel bodies.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.1/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, covering safety. The description adds context about the profiles being 'local' and 'reviewed' and their purpose, but reveals no additional behavioral details like output ordering or pagination, which the output schema likely covers.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single sentence that is direct and front-loaded, stating exactly what the tool does without any extraneous words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a simple list tool with no parameters, rich annotations, and an output schema (not shown but indicated), the description sufficiently explains the tool's purpose and context. No meaningful gaps remain.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has zero parameters, so there is nothing to document beyond the schema. Baseline 4 applies, as the description provides no parameter-specific information but none is needed.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description uses the specific verb 'List' with a clear resource of 'local payload profiles' and a definite purpose: 'turn one master product into channel bodies.' This clearly distinguishes it from sibling tools like profile_preview or channel_capabilities.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies when to use this tool (when you need to list available profiles for transforming master products), but it does not explicitly mention alternatives, exclusions, or when not to use it. No comparison with sibling tools is provided.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

profile_previewPreview a payload profileA
Read-onlyIdempotent

Render a reviewed profile without calling any external seller API.

ParametersJSON Schema
NameRequiredDescriptionDefault
productYes
profile_idYes

Output Schema

ParametersJSON Schema
NameRequiredDescription

No output parameters

TDQS

A3.8/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false. The description adds the valuable behavioral context that no external seller API is called, reinforcing that this is a local, side-effect-free operation. It does not detail output format, but the annotation coverage lowers the burden.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single, front-loaded sentence that names the action and the key constraint. Every word earns its place, with no filler or repetition.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

The output schema and annotations cover return structure and safety, but the description leaves 'reviewed profile' undefined and does not clarify prerequisites or what rendering entails. It is adequate for a simple preview tool, but has clear informational gaps.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters2/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 0% and the description does not explain either required parameter. The product parameter is partially clarified by the detailed MasterProduct schema, but profile_id has no added meaning, and the description fails to compensate for the low schema coverage.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool renders/previews a profile and explicitly notes it does so without calling any external seller API, making the action and scope unambiguous. The verb 'Render' plus the resource 'reviewed profile' distinguishes it from external publishing operations.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The phrase 'without calling any external seller API' implies a safe, read-only preview use case, but the description gives no explicit when-to-use instructions, prerequisites (e.g., the profile must be reviewed), or alternatives such as product_publish. Usage guidance is left largely implicit.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 11 tool updatesv0.2.0
    • First observedchannel_capabilities
    • First observedchannel_health
    • First observedoperation_get
    • First observedproduct_delete
    • First observedproduct_get
    • First observedproduct_publish
    • First observedproduct_resume
    • First observedproduct_stop
    • First observedproduct_update
    • First observedprofile_list
    • First observedprofile_preview

TDQS

A3.9/5.0

Scored across 11 tools

Disambiguation5/5

Each tool targets a distinct resource and action: product lifecycle verbs (publish, update, stop, resume, delete, get), profile operations (list, preview), and channel introspection (capabilities, health). No two tools appear to perform the same function, so an agent can easily select the correct one.

Naming Consistency4/5

The naming pattern is mostly consistent: product_<verb> for product operations, profile_<verb> for profile operations, and channel_<noun> for channel metadata. The only minor deviation is channel_capabilities and channel_health using nouns while others use verbs, but the pattern remains predictable and readable.

Tool Count5/5

With 11 tools, the set is well-scoped for an e-commerce channel integration server. Each tool addresses a clear need without unnecessary bloat, covering product management, profile handling, and channel introspection in a balanced way.

Completeness5/5

The tool surface covers the full product lifecycle across channels: publish, update, stop, resume, delete, and get, plus profile management and operation status tracking. There are no obvious dead ends; all core workflows are supported, and the included channel capabilities/health tools round out the domain.

Maintenance

ActivitySlowing
ResponsivenessNo issues

Related MCP Connectors

Related MCP Servers