Skip to main content
Glama
jerepaira

laya-mcp

by jerepaira

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
LAYA_MODELNoPin "english", "multilingual" or "typed-decisions" to avoid checkpoint reloads.auto-router per request
LAYA_DEVICENoForce "cpu" if VRAM is tight.auto (cuda if available, else cpu)

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
{
  "listChanged": false
}
prompts
{
  "listChanged": false
}
resources
{
  "subscribe": false,
  "listChanged": false
}
experimental
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
decideB

Make typed decisions about a state. questions maps an id to {type: "choice"|"score"|"noul", instructions, criteria}. For choice, criteria is {key: description}; for score, a list of level labels. Returns each answer with a probability distribution.

classifyA

Pick the single best label for a text, with calibrated confidence and a score for every label. Use for routing, tagging, moderation, triage.

scoreB

Rate a text on an ordered scale given by criteria (low to high). Returns the probability-weighted score plus the distribution.

checkB

Answer a yes/no question about a state. Returns P(yes) in [0,1].

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A3.5/5.0

Scored across 4 tools

Disambiguation2/5

decide is a generic decision engine that can handle choice and score types, which substantially overlaps with classify and score. The specialized tools add context (text vs. state), but the boundaries are not crisp, and an agent could easily misselect decide for tasks the others are designed for.

Naming Consistency5/5

All four tool names are single lowercase verbs with no mixed conventions or inconsistent patterns. The imperative style is consistent and easy to predict, even if the verbs are somewhat generic.

Tool Count4/5

Four tools is a reasonable number for a decision/classification/rating server. However, decide's broad scope makes classify, score, and check feel somewhat redundant, so the count earns slightly less than full marks.

Completeness4/5

The set covers common decision tasks: choice/classification, ordered scoring, and yes/no checking, plus the generic noul type through decide. Minor gaps exist around batch processing or clearer support for unstructured outputs, but the core decision surface appears well covered.

Maintenance

ActivityMaintained
ResponsivenessNo issues