Skip to main content
Glama
WYRE-AI

Alloy Navigator MCP Server

by WYRE-AI

alloy_get_object_activities

Retrieve activity and history log entries for an Alloy Navigator object by its OID, including status changes, assignment changes, and system-generated notes.

Instructions

Get the activity/history log entries recorded against a single Alloy Navigator object by its OID - e.g. status changes, assignment changes, and system-generated notes.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
oidYesThe object's OID (from alloy_list_objects or alloy_get_object).
par_limitNoMaximum number of records to return.
par_fieldsNoComma-separated list of field names to include in the result. Omit to return every field.
par_offsetNoNumber of records to skip, for paging.
par_sort_ascNoComma-separated list of field names to sort the result by, ascending.
par_sort_descNoComma-separated list of field names to sort the result by, descending.

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A4/5.0
Behavior3/5

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

With no annotations, the description carries the full burden. It conveys that this is a read operation ('Get') and describes the kind of data returned, which is useful. However, it does not disclose absent-OID behavior, pagination implications, or any access requirements; it is adequate but not rich in behavioral context.

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?

A single sentence, front-loaded with the primary action and resource, followed by a compact list of illustrative examples. There is no filler or repetition of schema contents.

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 read-only history-log retrieval tool with a simple required parameter and fully documented optional parameters, the description plus schema is nearly complete. It is not fully complete because there is no output schema and no mention of edge cases or return shape, but the core invocation path is well covered.

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?

Schema description coverage is 100%, so the schema already explains oid, par_limit, par_fields, par_offset, and sort parameters. The description adds no additional parameter semantics beyond echoing that the object is identified by OID, which is already present in the schema. Baseline 3 applies.

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 names a specific verb and resource: 'Get the activity/history log entries recorded against a single Alloy Navigator object by its OID.' It also gives concrete examples (status changes, assignment changes, system-generated notes) and is clearly distinct from siblings like alloy_get_object, which returns the object itself, not its history.

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

Usage Guidelines4/5

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

The description provides clear context: use this when you need activity/history entries for a particular object, and you must identify that object by OID. It does not explicitly say 'use X instead' or list exclusions, but the purpose is clear enough to make the choice versus sibling tools obvious.

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