Skip to main content
Glama
rollecode

seerr-mcp

by rollecode

list_issue_count

Read-onlyIdempotent

Retrieve the total number of open issues in Overseerr or Jellyseerr. Use this to monitor issue volume and manage support workflows.

Instructions

Gets issue counts.

GET /api/v1/issue/count

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

B3/5.0
Behavior2/5

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

Annotations already declare readOnlyHint, idempotentHint, and destructiveHint, so the safety profile is known. The description adds only the HTTP path and a rephrase of the tool name, without disclosing any additional behavioral traits such as whether counts are global, scoped, or computed differently.

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

Conciseness4/5

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

The description is very short and front-loaded, with two concise lines. The endpoint path is useful context, though the opening sentence is largely redundant with the tool name.

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 zero-parameter, read-only endpoint with an output schema and safety annotations, the description provides enough to attempt a call. The main ambiguity is what 'issue counts' precisely quantifies, but that is likely resolved by the output schema.

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 tool has zero parameters and schema coverage is 100%, so there is no parameter information missing. Baseline for a zero-parameter tool is 4; the description does not need to add anything here.

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

Purpose3/5

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

The description states the verb 'Gets' and resource 'issue counts', so the basic purpose is present. However, it is nearly a restatement of the tool name and does not clarify what 'issue counts' means (total count, per-status, etc.) or distinguish itself from sibling list_issue.

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?

No guidance is provided on when to use this tool versus alternatives like list_issue or list_request_count. There are no exclusions, prerequisites, or contextual hints to help an agent select this tool.

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

Deploy Server

Other Tools