MCPMCP Tools/Content Series/get_content_series
get_content_series
Readideas:read
Get one content series by id, including its attached (non-archived) post ideas. Identify it by its id (from list_content_series or create_content_series).
Parameters
seriesIdstringrequired
The id of the content series to fetch (required).
Example request
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "get_content_series",
"arguments": {
"seriesId": "string"
}
}
}Example response
{
"jsonrpc": "2.0",
"id": 1,
"result": {
"content": [
{
"type": "text",
"text": "..."
}
]
}
}Response shape shown for illustration — the actual content depends on the tool and your data.