Skip to main content
Glama
global-mysterysnailrevolution

simple-rail-mcp

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
RAIL_IPYesIP address of the linear rail controller.
RAIL_PORTNoPort of the controller (default 80).80
RAIL_ENDPOINTNoHTTP endpoint for sending commands (default '/command')./command
MOVE_WAIT_TIMENoWait time in seconds after movement (default 5).5
COMMAND_TEMPLATENoG-code template with {position} placeholder (default 'G0 X{position} F1000').G0 X{position} F1000

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
{}

Tools

Functions exposed to the LLM to take actions

NameDescription
move_rail_and_waitB

Move linear rail to a position and wait for completion. Simple command-based control.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

B3.3/5.0

Scored across 1 tool

Disambiguation5/5

There is only one tool, so there is no possibility of confusing it with another tool in the set. Its purpose is clearly stated as moving a linear rail and waiting for completion.

Naming Consistency5/5

With a single tool, there is no inconsistency across names. The name move_rail_and_wait follows a readable snake_case verb_noun pattern and is descriptive.

Tool Count3/5

A single tool is borderline thin for a server, even one described as simple. If the intended scope is only command-based movement, it may suffice, but typical rail control often needs more operations.

Completeness2/5

The tool surface covers only moving and waiting, leaving significant gaps for a rail-control domain. Missing operations such as stop, home, get position, or set speed could cause agent failures in common workflows.