scrapecreators_instagram_posts
Pack: scrapecreators · Endpoint: https://gateway.pipeworx.io/scrapecreators/mcp
Get recent posts for an Instagram user: captions, media URLs, like/comment/play counts, and permalinks.
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
username | string | yes | Instagram username/handle without the @, e.g. “nike” |
next_max_id | string | no | Pagination cursor returned as next_max_id in a previous response (optional) |
_apiKey | string | yes | ScrapeCreators API key (sign up at https://app.scrapecreators.com) |
Example call
Arguments
{
"username": "nike",
"_apiKey": "your-scrapecreators-api-key"
}
curl
curl -X POST https://gateway.pipeworx.io/scrapecreators/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"scrapecreators_instagram_posts","arguments":{"username":"nike","_apiKey":"your-scrapecreators-api-key"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('scrapecreators_instagram_posts', {
"username": "nike",
"_apiKey": "your-scrapecreators-api-key"
});
More examples
{
"username": "cristiano",
"next_max_id": "cursor_abc123",
"_apiKey": "your-scrapecreators-api-key"
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"scrapecreators": {
"url": "https://gateway.pipeworx.io/scrapecreators/mcp"
}
}
}
See Getting Started for client-specific install steps.