Skip to main content
Glama
subbuyalla

WeTrack Enterprise MCP Server

by subbuyalla

wetrack_list_notifications

Get a paginated list of your notifications, filterable by read status, category, or project. View comments and updates to track activity without missing important changes.

Instructions

Retrieve paginated notifications for the authenticated user.

Args: status: Filter by read status — 'all' (default), 'unread', or 'read'. category: Filter by type — 'all' (default), 'comment', or 'update'. project_id: Filter notifications to a specific project UUID. page: Page number (default: 1). limit: Items per page, max 100 (default: 20).

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
pageNo
limitNo
statusNoall
categoryNoall
project_idNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv1.0.0

TDQS

A4.2/5.0
Behavior4/5

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

With no annotations, the description carries the behavioral burden. It discloses pagination, authenticated-user scoping, filter categories, defaults, and the limit maximum. It does not describe the output shape, but an output schema exists, so that is not a serious gap.

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 compact and front-loaded with the core purpose, followed by a concise bullet-style parameter list. Every sentence adds useful information without redundancy.

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

Completeness5/5

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

Given the output schema exists and all parameters are documented, the description is complete for a paginated listing tool. It covers the user scope, filters, defaults, and limit, so an agent can invoke it correctly without missing context.

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?

The schema provides no parameter descriptions, but the description fully compensates by explaining every parameter: status values, category values, project UUID filtering, page, and limit with max and defaults. This gives the agent everything needed to construct valid arguments.

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

Purpose4/5

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

The description clearly states the verb and resource: retrieve paginated notifications for the authenticated user. It is clear what this tool does, but it does not explicitly distinguish itself from related notification siblings like wetrack_get_unread_notification_count or wetrack_mark_notification_read.

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 purpose implies a listing use case, and the parameter defaults make behavior predictable, but there is no explicit guidance about when to choose this tool over sibling notification tools. The context is clear enough for an agent to infer usage, but no alternatives or exclusions are stated.

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