ema_article57_recent_changes
Pack: ema-article57 · Connect: https://pipeworx.io/mcp (see Connect below for a single-pack URL)
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/ema_article57_recent_changes for the schema, then POST the same URL with its arguments for the data.
Products added to or removed from the Article 57 register since a given date, computed by diffing
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
since | string | yes | Earliest date to diff from, YYYY-MM-DD. |
Example call
Arguments
{
"since": "2026-09-01"
}
curl
curl -X POST https://gateway.pipeworx.io/ema-article57/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"ema_article57_recent_changes","arguments":{"since":"2026-09-01"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('ema_article57_recent_changes', {
"since": "2026-09-01"
});
Connect
Add this to your MCP client config — every tool in the catalog, including this one — or use one-click install buttons:
{
"mcpServers": {
"pipeworx": {
"url": "https://pipeworx.io/mcp"
}
}
}
Connect to just the ema-article57 pack
{
"mcpServers": {
"ema-article57": {
"url": "https://gateway.pipeworx.io/ema-article57/mcp"
}
}
}
See Getting Started for client-specific install steps.