Nexscope

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_feed
Legacy MCP endpoint
/api/skill-api/v1/mcp
JSON-RPC method
tools/call

Authentication

Send the user API key as a bearer token on every MCP JSON-RPC request.

Authorization: Bearer nk-xxxxxxxxxxxxxxxxx

If 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,
      "site": "US",
      "page": 1
    }
  }
}
Legacy endpoint
POST /api/skill-api/v1/mcp
Canonical detail URL
https://www.nexscope.ai/mcp-map/amazon-policy-feed

Arguments

NameTypeRequiredMeaning
sitestringoptional
Amazon site code, uppercase. Defaults to US.
Example: US
publishedAtGtestringoptional
Publication or change time lower bound, inclusive, format yyyy-MM-dd HH:mm:ss.
Example: 2026-01-01 00:00:00
publishedAtLtestringoptional
Publication or change time upper bound, inclusive, format yyyy-MM-dd HH:mm:ss.
Example: 2026-01-07 23:59:59
pageintegeroptional
Page number, starting from 1.
Example: 1
pageSizeintegeroptional
Items per page, range 1-100.
Example: 20
idstringoptional
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.

NameTypeRequiredDescription
dataanyrequired
Data value used by this API operation.
codeintegerrequired
0 means accepted or successful; nonzero is a platform error.
msgstring | nullrequired
Msg value used by this API operation.
tsstringrequired
Epoch milliseconds.
timestringrequired
Server local time: yyyy-MM-dd HH:mm:ss.
coststringrequired
Elapsed milliseconds, never credits; -1 outside web requests.
traceIdstring | nullrequired
Trace id value used by this API operation.

Any of option 1

NameTypeRequiredDescription
dataobjectrequired
Data value used by this API operation.
data.totalintegeroptional
Number of news items returned by the list endpoint.
Example: 1
data.typestringoptional
Render style returned by the upstream endpoint.
Example: tableListWorkbenches
data.dataarrayoptional
News list returned by the policy feed endpoint.
Example: []
data.data[].idstringoptional
News record ID used to fetch the full body.
Example: a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4
data.data[].titlestringoptional
News title in the list response.
Example: Amazon policy update
data.data[].summaryZhstringoptional
AI-generated Chinese summary for the news item.
Example: Policy summary
data.data[].originalUrlstringoptional
Original article URL.
Example: https://example.com/news
data.data[].publishedAtstringoptional
Publication or change time, format yyyy-MM-dd HH:mm:ss.
Example: 2026-01-01 00:00:00
data.stdoutstringoptional
Full news body in Markdown format returned by the detail endpoint.
Example: # Amazon policy update
data.titlestringoptional
News title returned by the detail endpoint.
Example: Amazon policy update
data.summaryZhstringoptional
AI-generated Chinese summary returned by the detail endpoint.
Example: Policy summary
data.costTimeintegeroptional
Total processing time in milliseconds.
Example: 1
data.costTokenintegeroptional
Token consumption.
Example: 1
data.columnsarrayoptional
Frontend column definitions returned by the list endpoint.
Example: []
data.sourceTypestringoptional
Provider-specific source platform type.
Example: null
data.sourceToolstringoptional
Provider-specific source tool name.
Example: null
data.pageintegeroptional
Current page returned by the upstream provider.
Example: null
data.pageSizeintegeroptional
Page size returned by the upstream provider.
Example: null
data.pageItemCountintegeroptional
Item count on the current page returned by the upstream provider.
Example: null
data.totalPageintegeroptional
Total page count returned by the upstream provider.
Example: null
data.dataSnapshotMonthstringoptional
Data snapshot month returned by the upstream provider.
Example: null

Any of option 2

NameTypeRequiredDescription
datanullrequired
Data value used by this API operation.

Examples

Example arguments

{
  "pageSize": 20,
  "site": "US",
  "page": 1
}

Example structuredContent

{
  "data": {
    "total": 1,
    "type": "tableListWorkbenches",
    "data": [
      {
        "id": "a1b2c3d4e5f6a1b2c3d4e5f6a1b2c3d4",
        "title": "Amazon policy update",
        "summaryZh": "Policy summary",
        "originalUrl": "https://example.com/news",
        "publishedAt": "2026-01-01 00:00:00"
      }
    ],
    "stdout": "# Amazon policy update",
    "title": "Amazon policy update",
    "summaryZh": "Policy summary",
    "costTime": 1,
    "costToken": 1,
    "columns": []
  },
  "code": 0,
  "msg": "ok",
  "ts": "0",
  "time": "2026-01-01 00:00:00",
  "cost": "-1",
  "traceId": null
}