MyRouteOnline
Server Details
Multi-stop route optimization, navigation links, and email delivery. Powered by MyRouteOnline.
- Status
- Healthy
- Last Tested
- Transport
- Streamable HTTP
- URL
Glama MCP Gateway
Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.
Full call logging
Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.
Tool access control
Enable or disable individual tools per connector, so you decide what your agents can and cannot do.
Managed credentials
Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.
Usage analytics
See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.
Tool Definition Quality
Average 4/5 across 4 of 4 tools scored.
Each tool serves a clearly distinct purpose: authentication code retrieval, starting an optimization, checking its status/results, and emailing results. There is no overlap or ambiguity between them.
All tool names follow a consistent verb-first camelCase pattern (checkOptimization, emailResults, getOneTimeCode, startOptimization), making the set easy to predict and navigate.
With only 4 tools, the server is tightly scoped to the core route optimization workflow: authenticate, start, poll, and deliver results. Every tool is essential and earns its place.
The tool set covers the full lifecycle of a route optimization job: authentication, starting, checking status, and sending results. No obvious gaps in this focused domain.
Available Tools
4 toolscheckOptimizationAInspect
Check the status and results of a route optimization job. Returns the optimized route when complete. Authenticate with either (otpCode + otpEmail) or mroApiKey.
| Name | Required | Description | Default |
|---|---|---|---|
| otpCode | No | 6-digit one-time code (required if mroApiKey is not provided) | |
| jobToken | Yes | Job token returned from startOptimization | |
| otpEmail | No | Email address (required if mroApiKey is not provided) | |
| mroApiKey | No | MyRouteOnline API key (alternative to otpCode + otpEmail, obtained from MyRouteOnline support) |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
No annotations are provided, so the description carries the burden. It explains the return condition ('when complete') and authentication modes, but does not disclose behavior when the job is incomplete, error handling, or polling semantics. This is a moderate gap.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Three concise sentences; the key purpose is front-loaded and every sentence adds relevant information. No filler or redundancy.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
With no output schema, the description states the main return value (optimized route) and covers authentication. It is sufficient for a simple polling tool, though more detail on non-complete states or result format would improve completeness.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
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 by explicitly defining the authentication alternatives (otpCode+otpEmail vs mroApiKey) and indicating jobToken comes from startOptimization, enriching the schema descriptions.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the tool checks the status and results of a route optimization job, using 'Check' as the verb and specifying the resource. It distinguishes itself from siblings like startOptimization (which starts jobs) and emailResults (which emails results).
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies the tool is used after startOptimization by referencing the jobToken returned from that function, and clarifies authentication choices. It does not explicitly say when not to use it or name alternatives, but the context is sufficient.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
emailResultsAInspect
Email the optimized route results with navigation links to a specified email address. Authenticate with either (otpCode + otpEmail) or mroApiKey.
| Name | Required | Description | Default |
|---|---|---|---|
| otpCode | No | 6-digit one-time code (required if mroApiKey is not provided) | |
| toEmail | Yes | Recipient email address | |
| jobToken | Yes | Job token from completed optimization | |
| otpEmail | No | Email address (required if mroApiKey is not provided) | |
| mroApiKey | No | MyRouteOnline API key (alternative to otpCode + otpEmail, obtained from MyRouteOnline support) |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the burden. It discloses the authentication requirement and the inclusion of navigation links, which is useful. However, it does not describe side effects (e.g., email delivery failures, rate limits), permission needs, or whether the OTP is consumed. The behavioral disclosure is average, not extensive.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two sentences, each earning its place: the first states the action and object, the second states the authentication requirement. No redundant or filler content.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The description is concise yet sufficient for a straightforward email-sending tool with a well-documented schema. It includes purpose and auth, while the schema covers parameters. It could briefly mention that the optimization must be completed first, but the jobToken description already implies that. Overall, it provides enough context for tool selection and invocation.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema covers 100% of parameters with descriptions, so the baseline is 3. The description does not add any parameter-level meaning beyond what the schema already provides; it merely restates the authentication options that are already documented in the properties.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description clearly states the action ('Email'), the resource ('optimized route results with navigation links'), and the recipient ('specified email address'). It distinctly separates this tool from its siblings (checkOptimization, getOneTimeCode, startOptimization) by identifying the email-sending step.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description implies usage after optimization by referencing 'optimized route results' and requires a 'jobToken from completed optimization' in the schema. It also provides explicit authentication options (otpCode+otpEmail or mroApiKey). However, it does not explicitly state 'use after checkOptimization confirms completion' or exclude alternative flows.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
getOneTimeCodeAInspect
Request a one-time authentication code to be sent via email. This code is required for all other operations.
| Name | Required | Description | Default |
|---|---|---|---|
| loginEmail | Yes | Email address to receive the one-time code |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
The description discloses that the code is sent via email and that it is a prerequisite, but it does not mention response format, delivery time, potential errors, or rate limits. With no annotations provided, the description carries the transparency burden, and while it gives some context, it lacks depth regarding side effects and failure modes.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
The description is two concise sentences, front-loaded with the core purpose and promptly stating the prerequisite role. No wasted words.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
The tool is simple with one parameter and no output schema. The description is adequate for understanding its role as an authentication prerequisite, but it does not specify what the agent should expect after the request (e.g., a success indicator or whether a new code invalidates previous ones). This is a minor gap in completeness.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
Schema description coverage is 100%, with the parameter 'loginEmail' already described as 'Email address to receive the one-time code.' The description adds little beyond the schema, mentioning 'via email' but not providing additional semantic detail about the parameter.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb 'Request' and a clear resource 'one-time authentication code sent via email.' It clearly differentiates from sibling tools (checkOptimization, emailResults, startOptimization) by focusing on authentication rather than optimization or results.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The phrase 'This code is required for all other operations' provides clear context that this tool must be used before other operations, but it does not explicitly state when not to use it or name alternatives. This is clear context without exclusions, fitting a score of 4.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
startOptimizationAInspect
Start a route optimization job with multiple addresses. Authenticate with either (otpCode + otpEmail) or mroApiKey.
| Name | Required | Description | Default |
|---|---|---|---|
| otpCode | No | 6-digit one-time code received via email (required if mroApiKey is not provided) | |
| otpEmail | No | Email address that received the one-time code (required if mroApiKey is not provided) | |
| addresses | Yes | List of addresses to optimize (minimum 3) | |
| mroApiKey | No | MyRouteOnline API key (alternative to otpCode + otpEmail, obtained from MyRouteOnline support) | |
| startTimeHHMM | No | Start time in HH:MM format (default: 08:00) |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
With no annotations, the description carries the disclosure burden. It does reveal the two authentication modes (otpCode+otpEmail or mroApiKey), which is valuable. However, it does not mention that starting an optimization job is likely asynchronous, what the return value is, or how to track progress via checkOptimization.
Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.
Is the description appropriately sized, front-loaded, and free of redundancy?
Two concise sentences, each earning its place. The first states the primary purpose, the second covers authentication. No filler or redundant information.
Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.
Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?
This tool initiates a long-running job, but the description omits crucial context about the response format, whether it returns immediately or blocks, and how to check the job status (sibling tool exists). The lack of an output schema and annotations increases the need for these details, making the description adequate but incomplete.
Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.
Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?
The schema provides 100% coverage of all parameters with meaningful descriptions. The description's note about 'either otpCode+otpEmail or mroApiKey' redundantly states what the schema already explains via conditional requirements. No additional format or constraint details are added.
Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.
Does the description clearly state what the tool does and how it differs from similar tools?
The description uses a specific verb 'Start' with a clear object 'route optimization job' and qualifier 'with multiple addresses', immediately distinguishing it from siblings like checkOptimization, emailResults, and getOneTimeCode. The purpose is unmistakable.
Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.
Does the description explain when to use this tool, when not to, or what alternatives exist?
The description clearly states the core action and authentication options, implying when to use this tool (to start a job) versus siblings like checkOptimization (to check status). However, it does not explicitly exclude other contexts or mention alternatives beyond the obvious distinction.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- AlicenseNot gradedqualityDmaintenanceRoute optimization API for Brazil with tools for geocoding, distance matrices, isochrones, and advanced vehicle routing, supporting constraints like time windows, skills, and multi-profile fleets.68MIT
- AlicenseNot gradedqualityBmaintenanceAI-powered route optimization MCP server for heavy vehicles and logistics. Calculate truck-optimized routes, predict traffic congestion with LSTM neural networks, compute toll costs, fuel costs and CO2 emissions, find truck stops and check weather along any European route.MIT

ThinAir Geoofficial
AlicenseAqualityCmaintenanceLocation & routing intelligence for AI agents — geocoding, truck routing, traffic, weather, and place search.3619111MIT- FlicenseNot gradedqualityBmaintenanceEnables AI agents to manage routes via Syncnox backend, with tools to add stops, optimize routes, get ETAs, and retrieve route details.