Add an article to a series
add_to_seriesAdd an existing article to a series using their slugs, optionally setting a custom position. Omit position to append to the end.
Instructions
Place an existing article into an existing series, optionally at a specific position.
Both the series and the article must already exist — this creates neither. Identify them by SLUG, not id: get_series supplies the series slug and the article tools supply the article slug. Omit position to append at the end.
Requires an API key. Adding an article does not change its publication status or URL; it only changes where it appears. Inserting at a position shifts the articles after it down. Errors if either slug is unknown.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| position | No | 1-based position within the series. Omit to append at the end. Inserting shifts later articles down. | |
| series_slug | Yes | Slug of the target series, from get_series. Not its title or id. | |
| article_slug | Yes | Slug of the article to add, from list_my_articles. Not its title or id. |