Skip to main content
Glama
WYRE-AI

Alloy Navigator MCP Server

by WYRE-AI

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
AUTH_MODENoAuthentication mode: env (default) reads ALLOY_BASE_URL, ALLOY_CLIENT_ID, and ALLOY_CLIENT_SECRET; gateway receives credentials per-request via X-Alloy-Base-Url, X-Alloy-Client-Id, and X-Alloy-Client-Secret headers.env
LOG_LEVELNoLogging level: debug, info (default), warn, or error.info
MCP_TRANSPORTNoTransport mode: stdio (default) or http.stdio
ALLOY_BASE_URLNoBase URL of the Alloy Navigator server, e.g. https://alloy.example.com.
ALLOY_CLIENT_IDNoApplication account client ID, issued under Settings App > Services > API > Applications.
CONDUIT_S2S_SECRETNoWhen set, the HTTP transport requires a valid X-Gateway-S2S header on every /mcp request.
ALLOY_CLIENT_SECRETNoApplication account client secret, issued alongside the client ID.

Instructions

Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.

This server publishes no instructions, or was last inspected before Glama recorded them.

Capabilities

Features and capabilities supported by this server

Protocol revision2025-11-25

CapabilityDetails
tools
{}
logging
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
alloy_list_objectsA

List objects of a given Alloy Navigator object class (e.g. Incidents, Work Orders, Computers, Consumables, SoftwareCatalog, or 'Purchase Order Items' - Alloy Navigator does not publish one exhaustive class list; use the object class names configured in your instance, which typically match the module names shown in the Alloy Navigator client). Supports field selection, sorting, paging, free-text search, and per-field filters. Each returned object's OID chains into alloy_get_object and alloy_get_object_activities.

alloy_get_objectA

Get every field of a single Alloy Navigator object by its OID (e.g. a ticket number like T000002) or database record GUID.

alloy_get_object_activitiesA

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.

alloy_get_dictionaryA

Get the allowed reference/classification values for a field on an Alloy Navigator object class - e.g. the valid Status or Types values for Incidents or Computers. Useful for resolving what a status/type code means, or for building a valid filter value for alloy_list_objects.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A4.1/5.0

Scored across 4 tools

Disambiguation5/5

Each tool has a clear, non-overlapping purpose: listing objects, fetching one object, retrieving its activity log, and looking up reference values. No tool could be confused with another.

Naming Consistency5/5

All tool names follow the same alloy_ prefix with a verb_noun pattern: list_objects, get_object, get_object_activities, get_dictionary. The convention is uniform and predictable.

Tool Count5/5

Four tools is a well-scoped set that covers the core object-read workflow without unnecessary bloat. Each tool serves a distinct need and fits within the ideal 3-15 range.

Completeness4/5

The set covers the main read-only lifecycle: list objects with filters, fetch full object details, get activity history, and resolve dictionary values. Minor gaps exist, such as no way to enumerate available object classes or perform create/update/delete operations, but these seem outside the server's clear query-focused purpose.

Maintenance

ActivityMaintained
ResponsivenessNo issues