Skip to main content
Glama

order_backlink

Add backlink order(s) to your basket (no charge yet). Pick ONE content mode: (auto) send donor_ids + target_url + keyword and we write the article; (prompt) also send "recommendations" to steer the AI writer — fetch the editable base prompt with get_article_prompt first; (own) send target_url + "content" (+ optional "title","article_url") to publish your own ready HTML (requires own-content enabled). Then call publish_basket to pay from balance.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
titleNoOwn mode: article title.
contentNoOwn mode: your ready HTML article body. Requires own-content enabled on the account.
keywordNoAnchor keyword. Required unless sending own content.
languageNoArticle language, e.g. en. Default en.
donor_idsYesDonor site IDs from list_donors.
target_urlNoThe page the backlink points to (your site). REQUIRED in every mode, including own content.
article_urlNoOwn mode: preferred slug/URL for the article.
recommendationsNoPrompt mode: your guidance for the AI writer (tone, angle, must-mention points).

Schema Changelog

Changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. First observed

TDQS

A4.7/5.0
Behavior4/5

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

With no annotations provided, the description carries the full transparency burden. It discloses that no charge occurs yet, that own-content mode requires special account permission, and that payment happens later via publish_basket. However, it does not describe what the API returns (e.g., order IDs, basket state) or mention potential side effects like overwriting existing drafts, leaving some behavioral ambiguity.

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 a single, compact paragraph that front-loads the primary purpose and then efficiently enumerates the three modes. Every sentence contributes essential information (modes, prerequisites, next step), with no redundancy or filler. The use of parentheses and inline parameter lists keeps it readable despite the complexity.

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

Completeness4/5

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

For a tool with three modes and eight parameters, the description covers the different usage scenarios, required inputs per mode, and the payment flow via publish_basket. It lacks explicit explanation of return values (no output schema exists), potential errors, or idempotency behavior, but the core operational context is well covered. It is complete enough for an agent to invoke it correctly in most cases.

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

Parameters5/5

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

While the schema provides 100% description coverage, the description adds critical semantic meaning by grouping parameters into operational modes: auto (donor_ids + target_url + keyword), prompt (adds recommendations), and own (target_url + content, with optional title/article_url). This mode-based grouping clarifies relationships and constraints that the schema alone does not convey.

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: 'Add backlink order(s) to your basket' with the key qualifier 'no charge yet'. It uniquely identifies the resource (backlink orders in a basket) and differentiates from siblings like publish_basket (payment) and get_article_prompt (fetching prompt).

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?

It provides explicit usage guidance by detailing three content modes (auto, prompt, own) with exact parameter combinations for each. It also directs the user to prerequisite actions ('fetch the editable base prompt with get_article_prompt first') and the follow-up step ('call publish_basket to pay'), making it clear when and how to use this tool versus alternatives.

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

A3.9/5.0
Disambiguation5/5

Each tool targets a distinct resource and action: balance, prompt template, basket contents, donor search, link list, order creation, and publishing. Even get_basket and list_links are clearly separated by pre-publish vs post-publish state.

Naming Consistency5/5

All tool names follow a consistent verb_noun pattern in snake_case (check_balance, list_donors, order_backlink, publish_basket). The verbs are varied but appropriate to each operation.

Tool Count5/5

7 tools is a well-scoped number for a backlink marketplace workflow. Each tool earns its place, covering balance, research, ordering, review, and publishing.

Completeness4/5

The core lifecycle is covered: check balance, find donors, add to basket, inspect basket, publish, and list results. A minor gap is the lack of a remove-from-basket tool or any way to update/cancel orders, but the main flow is complete.