Skip to main content
Glama
mdtahmidhossain

jenkins-http-mcp-server

jenkins_list_views

Read-only

List Jenkins views visible to the current user. Retrieve view names and URLs directly from the Jenkins server.

Instructions

List Jenkins views visible to the user.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
treeNoviews[name,url,_class]

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
okYes
dataYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed5 schema fields changedv2.0.0
    • removedOutput schema / additionalProperties
      Removed value: -true
    • addedOutput schema / description
      Added value: +"Structured content returned by successful Jenkins tools."
    • addedOutput schema / properties
      Added value: +{
      +  "data": {
      +    "title": "Data"
      +  },
      +  "ok": {
      +    "const": true,
      +    "title": "Ok",
      +    "type": "boolean"
      +  }
      +}
    • addedOutput schema / required
      Added value: +[
      +  "ok",
      +  "data"
      +]
    • changedOutput schema / title
      Previous value: -"jenkins_list_viewsDictOutput"New value: +"ToolSuccess"
  2. First observedv0.1.0

TDQS

B3.1/5.0
Behavior3/5

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

Annotations already declare readOnlyHint and openWorldHint, setting a lower bar. The description adds only the visibility scoping ('visible to the user'), which hints at permission-based filtering but does not elaborate on pagination, response shape, or the role of the tree parameter. No additional behavioral detail is provided beyond what annotations already convey.

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 efficient sentence that front-loads the action ('List') and the object ('Jenkins views'). It contains no filler words, repetition, or unnecessary detail.

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

Completeness2/5

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

Although an output schema exists and the core action is simple, the description omits any explanation of the tree parameter, which is essential for customizing the response. It also provides no context about when to use this tool versus jenkins_get_view. These gaps make the description incomplete for an agent to confidently invoke the tool with informed parameter choices.

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

Parameters1/5

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

The only parameter, 'tree', has 0% schema description coverage and the description does not mention it at all. The agent receives no explanation of what the tree parameter controls or what format is expected. The description completely fails to compensate for the schema gap.

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 uses the specific verb 'List' with the resource 'Jenkins views' and adds the scope 'visible to the user'. This clearly distinguishes it from sibling tools like jenkins_get_view, which retrieves a single view, and other list tools like jenkins_list_jobs.

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 provides no guidance on when to use this tool versus alternatives. It does not mention jenkins_get_view for viewing details of a single view, nor any conditions, prerequisites, or exclusions. The agent must infer usage from the one-line description alone.

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