Skip to main content

Search

Immutable Catalog Entry

This descriptor comes from the active versioned Portal catalog.

READscrape-creators.scrape_creators_reddit_get_v1_reddit_search
  • Contract tier: legacy
  • Risk: read
  • Catalog version: scrape-creators-2026.07.12.1
  • Descriptor hash: 9a4d6035015ffd8286694192ecc488e2dd61e9d90db08185651ee5e8594c7573

Use this when you need ScrapeCreators Reddit data from GET /v1/reddit/search for Search. Searches across all of Reddit for posts matching a query. Each post includes title, author, selftext, subreddit, score, ups, upvote_ratio, num_comments, created_utc, url, permalink, and is_video. Supports sort (relevance, new, top, comment_count), timeframe filtering, pagination via the after token, and a trim parameter for lighter responses. Returns the ScrapeCreators response in the standard MCP envelope with ok/data/error/meta. This is read-only. Requires the portal grant header and a ScrapeCreators BYOK API key.

Request Body

{
"jsonrpc": "2.0",
"id": "scrape-creators-scrape-creators-reddit-get-v1-reddit-search-example",
"method": "tools/call",
"params": {
"name": "scrape-creators.scrape_creators_reddit_get_v1_reddit_search",
"arguments": {
"body": "",
"sort": "relevance",
"trim": "",
"after": "",
"query": "",
"params": "",
"compact": "",
"max_items": "",
"timeframe": "all",
"include_raw": false
}
}
}

Arguments Schema

{
"type": "object",
"properties": {
"body": {
"anyOf": [
{
"type": "object",
"additionalProperties": true
},
{
"type": "array",
"items": {}
},
{
"type": "null"
}
],
"title": "Body",
"default": null,
"description": "JSON request body for provider endpoints that accept one."
},
"sort": {
"enum": [
"relevance",
"new",
"top",
"comment_count"
],
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Sort",
"default": null,
"description": "Sort by"
},
"trim": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"title": "Trim",
"default": null,
"description": "Set to true for a trimmed down version of the response"
},
"after": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "After",
"default": null,
"description": "Used to paginate to next page"
},
"query": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Query",
"default": null,
"description": "Search query"
},
"params": {
"anyOf": [
{
"type": "object",
"additionalProperties": true
},
{
"type": "null"
}
],
"title": "Params",
"default": null,
"description": "Optional advanced query parameter object. Prefer the documented top-level parameters when available."
},
"compact": {
"anyOf": [
{
"type": "boolean"
},
{
"type": "null"
}
],
"title": "Compact",
"default": null,
"description": "When true, trims large list payloads before returning them to the agent."
},
"max_items": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"title": "Max Items",
"default": null,
"description": "Maximum number of list items to return when compacting provider responses."
},
"timeframe": {
"enum": [
"all",
"day",
"week",
"month",
"year"
],
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Timeframe",
"default": null,
"description": "Timeframe"
},
"include_raw": {
"type": "boolean",
"title": "Include Raw",
"default": false,
"description": "When true, returns both compact normalized data and the raw provider payload; this can be large."
},
"path_params": {
"anyOf": [
{
"type": "object",
"additionalProperties": true
},
{
"type": "null"
}
],
"title": "Path Params",
"default": null,
"description": "Path template values for endpoints that expose path placeholders."
},
"search_query": {
"anyOf": [
{
"type": "string"
},
{
"type": "null"
}
],
"title": "Search Query",
"default": null,
"description": "Alias for query: Search query"
},
"cache_ttl_seconds": {
"anyOf": [
{
"type": "integer"
},
{
"type": "null"
}
],
"title": "Cache Ttl Seconds",
"default": null,
"description": "Optional cache lifetime for idempotent GET requests."
},
"confirm_high_cost": {
"type": "boolean",
"title": "Confirm High Cost",
"default": false,
"description": "Set true only when intentionally running a high-credit or write-intent request."
}
},
"additionalProperties": false
}

Output Schema

{
"type": "object",
"required": [
"ok",
"data",
"error",
"meta"
],
"properties": {
"ok": {
"type": "boolean",
"description": "Whether the local or provider operation completed successfully."
},
"data": {
"anyOf": [
{
"type": "object",
"additionalProperties": true
},
{
"type": "array",
"items": {}
},
{
"type": "string"
},
{
"type": "number"
},
{
"type": "boolean"
},
{
"type": "null"
}
],
"description": "Bounded operation result when ok is true."
},
"meta": {
"type": "object",
"description": "Safe request, pagination, cache, and timing metadata.",
"additionalProperties": true
},
"error": {
"anyOf": [
{
"type": "object",
"additionalProperties": true
},
{
"type": "null"
}
],
"description": "Safe structured error when ok is false."
}
},
"description": "Scrape Creators MCP normalized response envelope.",
"additionalProperties": false
}

Code Examples

curl -X POST 'https://portal.madpanda3d.com/api/mcp' \
-H 'Authorization: Bearer mad_live_***' \
-H 'Content-Type: application/json' \
-d '{
"jsonrpc": "2.0",
"id": "scrape-creators-scrape-creators-reddit-get-v1-reddit-search-example",
"method": "tools/call",
"params": {
"name": "scrape-creators.scrape_creators_reddit_get_v1_reddit_search",
"arguments": {
"body": "",
"sort": "relevance",
"trim": "",
"after": "",
"query": "",
"params": "",
"compact": "",
"max_items": "",
"timeframe": "all",
"include_raw": false
}
}
}'

Example Responses

{
"ok": true,
"message": "Tool scrape-creators.scrape_creators_reddit_get_v1_reddit_search executed successfully.",
"note": "Response shape varies by MCP tool. Inspect live responses for exact fields."
}