posts
Pack: tenor · Endpoint: https://gateway.pipeworx.io/tenor/mcp
Posts by id (comma-sep).
Parameters
| Name | Type | Required | Description |
|---|---|---|---|
ids | string | yes | |
media_filter | string | no | |
client_key | string | no |
Example call
Arguments
{
"ids": "12345678,87654321"
}
curl
curl -X POST https://gateway.pipeworx.io/tenor/mcp \
-H 'Content-Type: application/json' \
-d '{"jsonrpc":"2.0","id":1,"method":"tools/call","params":{"name":"posts","arguments":{"ids":"12345678,87654321"}}}'
TypeScript (@pipeworx/sdk)
import { Pipeworx } from '@pipeworx/sdk';
const pipeworx = new Pipeworx();
const result = await pipeworx.call('posts', {
"ids": "12345678,87654321"
});
More examples
{
"ids": "16017442",
"media_filter": "gif"
}
Response shape
| Field | Type | Description |
|---|---|---|
results | array | Posts by ID |
Full JSON Schema
{
"type": "object",
"properties": {
"results": {
"type": "array",
"description": "Posts by ID",
"items": {
"type": "object",
"properties": {
"id": {
"type": "string",
"description": "Post ID"
},
"title": {
"type": "string",
"description": "Title"
},
"media_formats": {
"type": "object",
"description": "Media formats"
},
"created": {
"type": "number",
"description": "Creation timestamp"
},
"content_description": {
"type": "string",
"description": "Content description"
},
"itemurl": {
"type": "string",
"description": "Item URL"
},
"url": {
"type": "string",
"description": "Post URL"
},
"tags": {
"type": "array",
"items": {
"type": "string"
},
"description": "Associated tags"
},
"shares": {
"type": "integer",
"description": "Share count"
},
"hasaudio": {
"type": "boolean",
"description": "Has audio"
}
}
}
}
}
}
Connect
Add this to your MCP client config, or use one-click install buttons:
{
"mcpServers": {
"tenor": {
"url": "https://gateway.pipeworx.io/tenor/mcp"
}
}
}
See Getting Started for client-specific install steps.