MCPMCP Tools/Content Series/create_content_series
create_content_series
Writeideas:write
Create a new content series for a location — a named theme to group future post ideas under (e.g. "Customer Spotlights"). Attach post ideas to it via update_post_idea's seriesId field. Requires locationId and name.
Parameters
locationIdstringrequired
The location's id (required, from list_locations).
namestringrequired
The series' display name (required).
themestringoptional
A short description of the series' theme/angle.
Example request
{
"jsonrpc": "2.0",
"id": 1,
"method": "tools/call",
"params": {
"name": "create_content_series",
"arguments": {
"locationId": "string",
"name": "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.