Skip to main content
Glama
subbuyalla

WeTrack Enterprise MCP Server

by subbuyalla

wetrack_record_project_access

Log project access to update the user's recently accessed list. Provide a project UUID to record the current user's visit.

Instructions

Record that the current user accessed a project (updates 'recently accessed' list).

Args: project_id: The project UUID.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
project_idYes

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 provided, the description carries the disclosure burden. It explicitly reveals the update side effect on the 'recently accessed' list and scopes the action to the current user, which is the key behavioral trait beyond the schema. It does not discuss idempotency or permission requirements, but those are less critical for this simple marker action.

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 two compact, front-loaded sentences plus a single argument line. There is no filler or repetition; every sentence contributes either purpose, side-effect context, or parameter meaning.

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 low-complexity tool with one required parameter and an output schema, the description covers the purpose, side effect, and parameter semantics adequately. It could add explicit guidance about when to call it during project navigation, but nothing essential for selecting or invoking the tool is missing.

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 schema only defines project_id as a string with 0% description coverage. The tool description compensates by stating that project_id is 'The project UUID', adding concrete semantic meaning beyond the schema. It could include how to obtain the UUID, but the provided detail is sufficient for a one-parameter tool.

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 operation ('Record that the current user accessed a project') and names its concrete effect ('updates recently accessed list'). This clearly distinguishes it from the read-only get/list siblings such as wetrack_get_recent_projects and wetrack_get_project.

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 intended trigger is implied by the phrasing: call this when the current user accesses a project. However, there is no explicit guidance on when not to use it, nor any mention of alternatives such as wetrack_get_project for simply viewing a project without recording access.

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