einpresswire_get_release
Pack: einpresswire · Endpoint: https://gateway.pipeworx.io/einpresswire/mcp
No MCP client? Call it directly: GET https://gateway.pipeworx.io/v1/tools/einpresswire_get_release for the schema, then POST the same URL with its arguments for the data.
Fetch one specific EIN Presswire release by its URL (source: einpresswire.com), as returned by
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
url | string | yes | The release URL (from a prior einpresswire tool call). |
Example call
Arguments
{
"url": "https://www.einpresswire.com/article/944072856/more-social-media-use-linked-to-poorer-sleep-and-self-rated-health-among-college-students"
}
curl
curl -X POST https://gateway.pipeworx.io/einpresswire/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"einpresswire_get_release","arguments":{"url":"https://www.einpresswire.com/article/944072856/more-social-media-use-linked-to-poorer-sleep-and-self-rated-health-among-college-students"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('einpresswire_get_release', {
"url": "https://www.einpresswire.com/article/944072856/more-social-media-use-linked-to-poorer-sleep-and-self-rated-health-among-college-students"
});
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"einpresswire": {
"url": "https://gateway.pipeworx.io/einpresswire/mcp"
}
}
}
See Getting Started for client-specific install steps.