Amazon Marketplace Intelligence
Amazon Policy Feed MCP Tool
Query Amazon is latest policy, regulation, and compliance feed. Supports paginated browsing by marketplace and time range (with AI-generated Chinese summaries), and fetching full article body by record ID.
MCP tool name
nexscope_amazon_policy_feedEquivalent REST API path
https://claw-callback.nexscope.ai/api/skill-api/v1/skills/amazon-policy-feed/runJSON-RPC method
tools/callAuthentication
Send the user API key as a bearer token on every MCP JSON-RPC request.
Authorization: Bearer nk_xxxxxxxxxxxxxxxxxIf authentication is missing or invalid, ask the user to open API Access and copy a valid key before calling this tool.
Call this MCP tool
Use tools/call with the MCP tool name below. The arguments object should match the table on this page.
{
"jsonrpc": "2.0",
"id": "amazon-policy-feed-1",
"method": "tools/call",
"params": {
"name": "nexscope_amazon_policy_feed",
"arguments": {
"pageSize": 20,
"page": 1,
"site": "US"
}
}
}REST API equivalent
POST /api/skill-api/v1/runhttps://claw-callback.nexscope.ai/api/skill-api/v1/skills/amazon-policy-feed/runCanonical detail URL
https://www.nexscope.ai/mcp-map/amazon-policy-feedArguments
| Name | Type | Required | Meaning |
|---|---|---|---|
site | string | optional | Amazon site code, uppercase. Defaults to US. Example: US |
publishedAtGte | string | optional | Publication or change time lower bound, inclusive, format yyyy-MM-dd HH:mm:ss. Example: 2026-01-01 00:00:00 |
publishedAtLte | string | optional | Publication or change time upper bound, inclusive, format yyyy-MM-dd HH:mm:ss. Example: 2026-01-07 23:59:59 |
page | integer | optional | Page number, starting from 1. Example: 1 |
pageSize | integer | optional | Items per page, range 1-100. Example: 20 |
id | string | optional | News record ID from data[].id. Required when calling the policy detail endpoint. Example: a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4 |
Response fields
Treat structuredContent as the programmatic API response payload.
| Name | Type | Required | Meaning |
|---|---|---|---|
errcode | integer | optional | Gateway response code, 200 indicates success. Example: 200 |
errmsg | string | optional | Gateway status or error message. Example: ok |
code | string | optional | Business response code for the list endpoint. Example: 200 |
msg | string | optional | Business message for the list endpoint. Example: ok |
total | integer | optional | Number of news items returned by the list endpoint. Example: 1 |
type | string | optional | Render style returned by the upstream endpoint. Example: tableListWorkbenches |
data | array | optional | News list returned by the policy feed endpoint. Example: [] |
data[].id | string | optional | News record ID used to fetch the full body. Example: a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4 |
data[].title | string | optional | News title in the list response. Example: Amazon policy update |
data[].summaryZh | string | optional | AI-generated Chinese summary for the news item. Example: 政策摘要 |
data[].originalUrl | string | optional | Original article URL. Example: https://example.com/news |
data[].publishedAt | string | optional | Publication or change time, format yyyy-MM-dd HH:mm:ss. Example: 2026-01-01 00:00:00 |
stdout | string | optional | Full news body in Markdown format returned by the detail endpoint. Example: # Amazon policy update |
title | string | optional | News title returned by the detail endpoint. Example: Amazon policy update |
summaryZh | string | optional | AI-generated Chinese summary returned by the detail endpoint. Example: 政策摘要 |
costTime | integer | optional | Total processing time in milliseconds. Example: 1 |
costToken | integer | optional | Token consumption. Example: 1 |
columns | array | optional | Frontend column definitions returned by the list endpoint. Example: [] |
message | string | optional | Provider-specific message. Example: {} |
sourceType | string | optional | Provider-specific source platform type. Example: {} |
sourceTool | string | optional | Provider-specific source tool name. Example: {} |
page | integer | optional | Current page returned by the upstream provider. Example: {} |
pageSize | integer | optional | Page size returned by the upstream provider. Example: {} |
pageItemCount | integer | optional | Item count on the current page returned by the upstream provider. Example: {} |
totalPage | integer | optional | Total page count returned by the upstream provider. Example: {} |
dataSnapshotMonth | string | optional | Data snapshot month returned by the upstream provider. Example: {} |
Examples
Example arguments
{
"pageSize": 20,
"page": 1,
"site": "US"
}Example structuredContent
{
"errcode": 200,
"errmsg": "ok",
"code": "200",
"msg": "ok",
"total": 1,
"type": "tableListWorkbenches",
"data": [
{
"id": "a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4",
"title": "Amazon policy update",
"summaryZh": "政策摘要",
"originalUrl": "https://example.com/news",
"publishedAt": "2026-01-01 00:00:00"
}
],
"stdout": "# Amazon policy update",
"title": "Amazon policy update",
"summaryZh": "政策摘要",
"costTime": 1,
"costToken": 1,
"columns": []
}