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 3.8/5 across 4 of 4 tools scored.
Each tool targets a distinct step in the optimization workflow: authentication, starting a job, checking results, and emailing results. No overlap in purpose.
All tool names follow a consistent camelCase verb+noun pattern (e.g., startOptimization, checkOptimization). No mixed conventions.
Four tools cover the essential workflow for route optimization without unnecessary complexity. The scope is well-defined.
Covers the basic flow (auth, start, check, email) but lacks support for managing multiple jobs (e.g., listing, canceling, updating). Some operations may require manual work.
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?
With no annotations, the description carries full burden. It discloses authentication requirements and the core behavior of returning the optimized route when complete, but lacks details on polling, error states, or rate limits. Adequate but not comprehensive.
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 sentences accomplish the goal: the first states the tool's action and return, the second explains authentication options. No superfluous words, well front-loaded.
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?
Given no output schema and the polling nature of the tool, the description fails to explain response format, polling behavior, or error handling. It is incomplete for effective use without further documentation.
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%, and the description adds conditional authentication logic (otpCode+otpEmail vs mroApiKey) beyond the schema's individual parameter descriptions, providing meaningful context for parameter selection.
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 and returns the optimized route when complete. It specifies the verb 'check' and the resource 'route optimization job', making the purpose unambiguous and distinct from siblings like startOptimization.
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 startOptimization and mentions authentication methods, but does not explicitly state when to use versus alternatives or when not to use. No exclusions or alternative tool references are provided.
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?
Discloses authentication requirements (otpCode+otpEmail or mroApiKey). No annotations provided, so description carries full burden; lacks details on potential errors or rate limits.
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 sentences, first states purpose concisely, second adds authentication detail. No redundant text.
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?
Describes what the tool does and authentication, but no output schema and description does not mention return values (e.g., success/error response). Incomplete for sending email operation.
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%, but description adds useful context about authentication alternatives (two methods) beyond individual parameter 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?
Description clearly states verb 'Email' and resource 'optimized route results with navigation links', distinguishing it from siblings (checkOptimization, getOneTimeCode, startOptimization) by its emailing function.
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?
Implies usage after optimization is complete (jobToken required), but no explicit when-not or alternatives guidance. Sibling tools exist but are not mentioned.
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?
No annotations provided, so the description carries full burden. It states the code is sent via email, but omits important behavioral details such as code expiration, idempotency, or error handling for invalid emails.
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 with no unnecessary words. It efficiently communicates the tool's purpose and context.
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?
For a simple one-parameter tool with no output schema and no annotations, the description covers the core action and necessity. Minor gap: lacks details on code expiration or error scenarios.
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% with a clear description for the loginEmail parameter. The tool description does not add additional meaning beyond the schema, so it meets the baseline without improvement.
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 requests a one-time authentication code sent via email, and it distinguishes itself from sibling tools (checkOptimization, emailResults, startOptimization) which are about optimization and emailing 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 this tool is a prerequisite for all other operations, providing clear context for when to use it. However, it does not explicitly state when not to use it or mention alternatives.
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?
No annotations provided, so description must compensate. It mentions authentication but omits key behavioral traits: whether the job runs asynchronously, what the return value is, or any rate limits. The schema implies minimum 3 addresses, but description does not confirm.
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?
Single sentence with no extraneous information. Efficient and to the point.
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?
Given missing output schema and annotations, the description is too brief. It does not cover return value, async behavior, or how the result is used (e.g., checkOptimization). Fails to fully inform the agent.
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 schema already documents all parameters. The description restates the authentication logic, which adds minimal value beyond the parameter descriptions. Baseline 3 is appropriate.
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's action: 'Start a route optimization job with multiple addresses.' It distinguishes from siblings (checkOptimization, emailResults, getOneTimeCode), which serve different phases.
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?
Provides clear authentication alternatives: either (otpCode + otpEmail) or mroApiKey. However, it does not explicitly state when to use this tool over siblings or mention prerequisites like obtaining a one-time code first.
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!