Skip to main content
Glama

Misar.Blog MCP Server

Add an article to a series

add_to_series
Idempotent

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

TableJSON Schema
NameRequiredDescriptionDefault
positionNo1-based position within the series. Omit to append at the end. Inserting shifts later articles down.
series_slugYesSlug of the target series, from get_series. Not its title or id.
article_slugYesSlug of the article to add, from list_my_articles. Not its title or id.

TDQS

A4.7/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description adds valuable behavioral context beyond the annotations: it states that adding an article does not change its publication status or URL, and that inserting at a position shifts later articles down. It also notes that errors occur if either slug is unknown. The annotations already indicate readOnlyHint=false, openWorldHint=true, idempotentHint=true, and destructiveHint=false, and the description aligns with these without contradicting them. It could have mentioned idempotency explicitly, but the annotations cover that.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise and well-structured. It starts with a clear one-sentence summary, then provides necessary details in a logical order: prerequisites, identification method, optional parameter behavior, and side effects. Every sentence adds value without redundancy. It is front-loaded with the core purpose and then elaborates.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool's moderate complexity (3 parameters, no output schema), the description is complete. It covers prerequisites, parameter semantics, side effects, and error conditions. The annotations provide additional safety hints, and the schema covers parameter details. There is no missing information that would prevent an agent from using the tool correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The schema already has 100% coverage with detailed descriptions for each parameter, including the 1-based position and the source of slugs. The description reinforces this by explaining the position behavior and the need to use slugs from specific tools. It adds a bit of extra context (e.g., 'Not its title or id') but mostly complements the schema. Since the schema is thorough, the description's additional value is moderate, hence a 4.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's function: 'Place an existing article into an existing series, optionally at a specific position.' It specifies the verb (place/add), the resources (article, series), and the key constraint (both must already exist). It also distinguishes from siblings like create_series and update_article by emphasizing it does not create either entity.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines5/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description provides explicit guidance on when to use this tool: it requires both the series and article to already exist, and it directs the user to get slugs from get_series and article tools. It also explains the optional position parameter and the behavior of omitting it (append at end). This clearly differentiates it from creation tools and provides context for when it is appropriate.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A4.1/5.0
Disambiguation4/5

The tools mostly map to clearly distinct resources and actions, with good behavioral separation between create_draft, publish_article, and update_article, and between the two title-generating tools. Some naming choices are still slightly misleading, such as get_series returning the full collection rather than a single series, and generate_cover_image references a non-existent upload_image tool.

Naming Consistency4/5

The vast majority of tools follow a clean lowercase verb_noun pattern, including create_*, get_*, list_*, and add_* names. Notable exceptions are upgrade, a bare verb that also mixes read and mutate behaviors, and get_series, which functions more like a list than a get.

Tool Count3/5

23 tools is in the heavy range for an MCP server, exceeding the ideal 3-15 span. That said, the tools do span legitimate blogging concerns such as articles, reactions, series, newsletters, analytics, and AI assistance, so the count feels broad rather than padded.

Completeness2/5

The surface covers article creation, reading, updating, and publishing, but there is no delete or unpublish for articles/drafts, no way to remove an article from a series, and no update/delete for series. The dangling reference to upload_image in generate_cover_image also suggests a missing tool, and agents will hit dead ends trying to undo publication or remove content.

Resources