Skip to main content
Glama
rollecode

seerr-mcp

by rollecode

get_user_by_user_id_push_subscriptions

Read-onlyIdempotent

Get all web push notification settings for a user by their ID, enabling review of subscription preferences.

Instructions

Get all web push notification settings for a user.

GET /api/v1/user/{userId}/pushSubscriptions

Args: user_id: Path parameter.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
user_idYes

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A3.7/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true, idempotentHint=true, and destructiveHint=false, so the safety profile is covered. The description adds the endpoint and the 'get all' scope, but does not disclose other behavior such as response shape, possible 404 for unknown users, or authorization requirements.

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 short and front-loaded with the core purpose, followed by the endpoint and parameter. It contains no meaningful filler, though the 'Args' section is slightly redundant given the schema.

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?

This is a simple single-parameter read operation with rich annotations and an output schema, so the description does not need to explain return values. The main missing piece is routing guidance relative to the singular sibling endpoint, but otherwise the definition is complete for invocation.

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?

The schema provides only the user_id number, and the description adds that it is a path parameter. Since user_id's meaning is fairly evident from the tool name and description, this is minimally sufficient, though it does not elaborate on semantics such as whose ID it is or expected format beyond the path template.

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 states a specific verb and resource: 'Get all web push notification settings for a user.' It also includes the exact endpoint path, making the operation unambiguous. The word 'all' distinguishes it from the sibling get_user_by_user_id_push_subscription_by_endpoint, which retrieves a single subscription.

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

Usage Guidelines3/5

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

The clear focus on retrieving all push subscriptions implies its main use case, but it does not explicitly mention when to prefer this over the singular push subscription endpoint or when not to use it. There is no alternative guidance, so the agent must infer usage from the name and first sentence.

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