MCPOutils MCP/Séries de contenu/update_content_series

update_content_series

Writeideas:write

Edit an existing content series' name, theme, or status. Pass only the fields you want to change. Identify it by its id (from list_content_series). Returns the updated series, or throws if not found.

Paramètres
seriesIdstringobligatoire
The id of the content series to update (required).
namestringfacultatif
New display name.
themestringfacultatif
New theme description.
statusstringfacultatif
New status — free text, not validated against a fixed set of values. To archive the series, use archive_content_series instead of setting a status here (archival is tracked separately from this field).
Exemple de requête
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "update_content_series",
    "arguments": {
      "seriesId": "string"
    }
  }
}
Exemple de réponse
{
  "jsonrpc": "2.0",
  "id": 1,
  "result": {
    "content": [
      {
        "type": "text",
        "text": "..."
      }
    ]
  }
}

La forme de la réponse est indicative — le contenu réel dépend de l'outil et de vos données.