Skip to main content
Glama

mcp-server

Localizar una parada o estación

find_transit_stop
Read-onlyIdempotent

Busca por nombre o línea una parada de autobús urbano o una estación de TRAM de Alicante y devuelve su código, líneas y coordenadas, para después consultar sus próximas salidas con next_departures. Requiere nombre o línea: no devuelve el listado completo.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
lineNoLínea que pasa por la parada.
limitNoResultados (máx. 10).
queryNoNombre o parte del nombre de la parada.
networkYesRed: autobús urbano o TRAM.

TDQS

A4.1/5.0
Behavior4/5

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

Annotations already establish read-only, open-world, and idempotent behavior. The description adds useful behavioral traits: it does not return the full stop list and it requires a search term. This goes beyond annotations, though the 'requiere nombre o línea' claim is not reflected in the schema's required fields.

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?

Two sentences carry all essential information: search scope, output, downstream workflow, and a key limitation. There is no fluff or repetition of the schema.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness3/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

For a tool without an output schema, the description helpfully states the return fields and workflow. However, the mismatch between the stated requirement ('nombre o línea') and the input schema (only network required) leaves an agent unsure how to construct a valid call. It also does not clarify how query and line interact when both are provided.

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 coverage is 100%, so the baseline is 3. The description adds some meaning by clarifying that query or line is the search key and that results include code, lines, and coordinates. However, it creates ambiguity by saying 'requiere nombre o línea' while the schema only marks network as required.

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 uses a specific verb ('Busca') and names a clear resource ('parada de autobús urbano o una estación de TRAM de Alicante'), plus the expected outputs ('código, líneas y coordenadas'). It also differentiates the tool from next_departures by explaining this is a prerequisite lookup step.

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?

It gives clear usage context: the agent should use this tool to find a stop by name or line, then call next_departures for upcoming departures. It also states a precondition, 'Requiere nombre o línea', but does not explicitly compare against sibling search tools like find_place or search_alicante.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

TDQS

A3.7/5.0
Disambiguation3/5

Several tools overlap in purpose: find_transit_stop and resolve_entity both resolve stops, while get_current_state, next_departures, favorite_stop, parking_availability, and beach_conditions all provide state/arrival information in different forms. The detailed descriptions help, but an agent could easily select the wrong tool when asked for simple arrival or status information.

Naming Consistency3/5

All names use snake_case and are readable, but the pattern is mixed: some are verb-led (find_place, get_current_state, resolve_entity), some are noun phrases (beach_conditions, fuel_prices, flight_status), and others are quirky (whats_on, catch_vehicle_decision). This is not chaotic, but it lacks a strong consistent convention.

Tool Count4/5

With 16 tools, the server is just above the ideal 3-15 range, but the broad Alicante information domain justifies the count. Each tool covers a distinct vertical or query path, and the set feels reasonably scoped rather than bloated.

Completeness4/5

The tool surface covers the main Alicante information domains well: transit, beaches, parking, food, places, flights, fuel, weather, and events, plus discovery/resolution helpers. There are minor gaps such as no direct traffic or bike-sharing tool, but agents can work around them via find_place or search_alicante.

Resources