Skip to main content
Glama

ScoutRail

Server Details

Find business leads and live opportunities for a business, with the proof and the next step.

If you are the author of this connector, you can claim ownership with GitHub, an HTTP challenge, or a DNS record. Claimed connector authors can inspect health checks, view analytics, and manage their listing.
Status
Healthy
Last Tested
Transport
Streamable HTTP · MCP 2025-06-18
URL

TDQS

A4.3/5.0

Scored across 2 tools

Disambiguation5/5

The two tools have clearly distinct purposes: list_markets provides market/status context, while scout_opportunities performs the core search for live opportunities. There is no overlap or ambiguity between them.

Naming Consistency5/5

Both tool names follow a consistent verb_noun snake_case pattern: list_markets and scout_opportunities. The naming is predictable and aligned with the server's domain.

Tool Count3/5

With only two tools, the surface feels thin but is internally coherent. Each tool serves a distinct and necessary role for the narrow scouting scope, yet the minimal count leaves little room for flexibility or edge cases.

Completeness4/5

The tool surface covers the core workflow: understanding available markets and then scouting opportunities within them. No critical operations like updates or deletions are expected for this query-style domain, and the description explicitly handles updates by re-calling the tool or using webhooks, so the coverage is adequate.

Available Tools

2 tools
list_marketsList marketsA
Read-only
Inspect

List the markets ScoutRail can scout and their status.

ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

TDQS

A4.1/5.0
Behavior3/5

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

Annotations already declare readOnlyHint=true and destructiveHint=false, so the safety profile is covered. The description adds that the tool returns 'status', which gives some insight into the output, but does not elaborate on what statuses exist or any other behavioral aspects. Given the annotations, this is adequate but not rich.

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?

The description is a single, succinct sentence that front-loads the core action and resource, then adds the status detail. Every word contributes value, and there is no redundancy or filler.

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

Completeness5/5

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

For a parameterless tool with no output schema, the description is sufficiently complete. It states what is listed (markets ScoutRail can scout) and what is included (their status). An agent can invoke it without further clarification, and the readOnlyHint confirms it is a safe read operation.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has zero parameters, so there is nothing to document. The schema description coverage is 100% (vacuously). With no parameters, the baseline is 4, and the description does not need to add parameter meaning. It correctly avoids inventing parameters that do not exist.

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 'List' and names the resource 'markets', adding the scoping context 'ScoutRail can scout' and the output detail 'and their status'. This clearly distinguishes the tool from the sibling 'scout_opportunities', which implies the latter is for actively searching opportunities rather than listing available markets.

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

Usage Guidelines3/5

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

The description does not explicitly state when to use this tool versus the sibling, nor does it provide any exclusions. The phrase 'can scout' implies a reference list, and the sibling name suggests an alternative, but the guidance is implicit rather than explicit. An agent would likely infer the right choice from naming, but no direct comparison is made.

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

scout_opportunitiesScout opportunitiesA
Read-only
Inspect

Find live public tenders, grants, RFPs and buyers for any business, by country/market. Pass a short description of what the business sells or does; optionally scope to market codes like za, uk, us, ng. Returns ranked, live opportunities (tenders, grants, RFPs, procurement notices, prospective buyers and partners), grouped, with a recommended NEXT MOVE. To get updates, call this tool again for the latest answer. If you run a backend with an https endpoint, POST { query, callbackUrl } to https://scoutrail.io/api/subscribe to receive signed webhook updates; conversational agents should just re-call this tool. Examples: {"business":"solar panel installer in Cape Town"}. {"business":"IT security consultancy","markets":["za","uk"]}.

ParametersJSON Schema
NameRequiredDescriptionDefault
marketsNoOptional market codes to scope the search, like za, uk, us, ng
businessYesWhat the business does, sells or is looking for (e.g. "hospital cleaning services")

Output Schema

ParametersJSON Schema
NameRequiredDescription
queryNo
countsYes
groupsYes
schemaYes
marketsNo
enrichedNo
nextMoveYes
subscribeNoHow to hear about updates for this query. poll: re-call the tool (what a conversational agent does). push: backends with an https endpoint POST { query, callbackUrl } to push.url for signed webhook updates.

TDQS

A4.6/5.0
Behavior4/5

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

Annotations already declare read-only/open-world behavior; the description adds that results are ranked, grouped, live, and include a recommended NEXT MOVE, and that re-calling is the way to get updates. This is helpful context, though it does not go into rate limits, auth, or staleness, so it stops short of a 5.

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?

The main purpose is front-loaded, followed by input guidance, return behavior, update policy, and examples. Every sentence contributes distinct information, including the external webhook alternative, without fluff.

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 two-parameter read-only tool with an output schema, the description covers how to invoke, what to expect, and how to refresh results. However, since sibling list_markets exists and the markets parameter accepts arbitrary codes, an explicit pointer to list_markets for available codes would have made the workflow fully discoverable.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/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 value above the schema with natural-language usage ('Pass a short description of what the business sells or does'), concrete market code examples, and two JSON examples showing valid combinations.

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?

Opens with a specific verb and resource: 'Find live public tenders, grants, RFPs and buyers for any business, by country/market.' This clearly identifies what the tool does and, by focusing on opportunity discovery rather than market metadata, distinguishes it from the sibling list_markets tool without needing to name it.

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

Usage Guidelines5/5

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

Gives direct invocation guidance: pass a short business description and optionally market codes. It explicitly handles update behavior ('call this tool again for the latest answer') and names the alternative (POST to the subscribe endpoint) with the condition that distinguishes backend apps from conversational agents.

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

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 2 tool updates
    • First observedlist_markets
    • First observedscout_opportunities

Related MCP Connectors

Related MCP Servers

  • F
    license
    Not graded
    quality
    D
    maintenance
    Transforms job postings into qualified sales leads by searching for active jobs, enriching company data, and identifying decision-maker contact information.
    -
  • F
    license
    Not graded
    quality
    B
    maintenance
    Enables instant scanning of any business to check if AI engines recommend it, providing verbatim evidence.
    -
  • A
    license
    Not graded
    quality
    B
    maintenance
    Discovers local businesses needing a website via OpenStreetMap and verifies their leads with checks like website existence, email deliverability, and site quality scoring.
    MIT
  • A
    license
    Not graded
    quality
    F
    maintenance
    Enables searching 12M+ verified businesses across 10 countries and 19 directories, with tools for lead generation, competitive analysis, and market research.
    25 PyPI
    MIT
Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources