Skip to main content
Glama
SmartBear

SmartBear MCP server

Official
by SmartBear

Zephyr: Create Test Cycle Web Link

zephyr_create_test_cycle_web_link

Add a web link to a Zephyr test cycle by specifying the cycle ID or key, a URL, and an optional description. Returns the newly created link.

Instructions

Create a new Web Link for a Test Cycle in Zephyr

Toolset: Test Cycles

Parameters:

  • testCycleIdOrKey (string) required: The ID or key of the test cycle.

  • description (string): The web link description

  • url (string): The web link URL

Examples:

  1. Create a link between the specified test cycle by Id '100001' and generic URL 'https://www.atlassian.com' with description 'Atlassian homepage'

{
  "testCycleIdOrKey": "100001",
  "url": "https://www.atlassian.com",
  "description": "Atlassian homepage"
}

Expected Output: The newly created Web Link with its ID and self link

  1. Create a web link for test cycle 'SA-R15' pointing to url: 'https://atlassian.com' with description 'Atlassian homepage'

{
  "testCycleIdOrKey": "SA-R15",
  "url": "https://atlassian.com",
  "description": "Documentation for pump specifications"
}

Expected Output: The newly created Web Link with its ID and self link

  1. Attach a documentation link 'https://docs.atlassian.com' to test cycle MM2-R15 for pump specifications

{
  "testCycleIdOrKey": "10001",
  "url": "https://docs.atlassian.com",
  "description": "Documentation for pump specifications"
}

Expected Output: The newly created Web Link with its ID and self link

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
urlNoThe web link URL
descriptionNoThe web link description
testCycleIdOrKeyYesThe ID or key of the test cycle.
Install Server

TDQS

B3.4/5.0
Behavior3/5

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

Annotations already indicate this is not read-only, not destructive, and not idempotent, and the description aligns by saying 'Create'. The description adds the expected output ('newly created Web Link with its ID and self link'), but it does not disclose potential side effects, permission requirements, duplicate-handling behavior, or URL validation. This meets the baseline but leaves behavioral details largely to inference.

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

Conciseness3/5

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

The description is front-loaded with a clear purpose and has a logical structure: purpose, toolset, parameters, examples. However, the three examples are highly redundant—they all follow the same shape and differ only in IDs and URLs. One example would have been sufficient, making the description longer than necessary.

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 simple 3-parameter tool with full schema coverage, the description provides enough information to invoke it correctly: required parameter is marked, examples show valid values, and expected output is stated. It is slightly incomplete in that it does not distinguish itself from the very similar 'issue link' siblings, but overall the operational context is adequate.

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

Parameters3/5

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

Schema description coverage is 100%, so the schema already documents each parameter. The description repeats the same parameter descriptions and provides examples, but it does not add meaning beyond what the schema defines. The examples slightly clarify accepted ID/key formats, but this is already encoded in the schema's pattern.

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 a specific action ('Create a new Web Link') on a specific resource ('Test Cycle in Zephyr'), and the 'Toolset: Test Cycles' line helps distinguish it from sibling tools like zephyr_create_test_case_web_link or zephyr_create_test_cycle_issue_link. The examples reinforce the intent without ambiguity.

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

Usage Guidelines2/5

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

The description gives no explicit guidance on when to use this tool versus alternatives such as creating an issue link or a web link for a test case. It implies usage through the toolset label and examples, but never states exclusions, prerequisites, or selection criteria relative to related tools.

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

Other Tools

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/SmartBear/smartbear-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server