Amendor
Server Details
Pull change requests from your Amendor board into your coding agent to build and open PRs.
- 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 has a clearly distinct purpose: getting details, listing, attaching a preview URL, and updating status. No overlapping functionality.
All tool names follow a consistent verb_noun pattern in snake_case (get_change_request, list_change_requests, set_preview_url, update_status).
With 4 tools, the set is well-scoped for managing change requests from discovery to review without unnecessary extras.
The tools cover the core lifecycle: listing, getting details, attaching preview, and updating status. A minor gap is the absence of a tool to create or delete change requests, but these may be handled externally.
Available Tools
4 toolsget_change_requestGet change requestARead-onlyIdempotentInspect
Get full detail for one change request so you can implement it: the user request, the exact element they pointed at (CSS selector + outerHTML), the page URL, and a screenshot URL. Call this before making the change.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Change request id, from list_change_requests. |
Output Schema
| Name | Required | Description |
|---|---|---|
| id | Yes | Change request id. |
| status | Yes | Current status. |
| elements | Yes | Elements attached to the request; empty for a general request. |
| page_url | Yes | URL of the page the request was made on. |
| request_text | Yes | What the user wants. |
| requested_by | Yes | Requester email, or "anonymous". |
| screenshot_url | Yes | Absolute screenshot URL, or empty string. |
| attachment_urls | Yes | Absolute URLs of any extra attachments. |
| revision_comment | Yes | The revision note, or empty string if none. |
| revision_requested | Yes | True if the requester reviewed a preview and asked for changes; push to the same branch/PR. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=true and destructiveHint=false, establishing safety. The description adds value by detailing the exact return fields (user request, element, page URL, screenshot URL), which is beyond what annotations provide. No contradiction; the description complements annotations with useful behavioral context about the response content.
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 a single sentence that immediately states the tool's purpose ('Get full detail for one change request') and then lists key details. Every word is necessary; there is no redundancy or filler. The instruction to call before making the change is efficiently integrated.
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 the tool's simplicity (1 param, output schema exists, annotations cover safety), the description is complete. It explains what the tool returns, when to use it, and how to obtain the required input. The presence of an output schema means detailed return value documentation is not needed in the description.
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 single parameter 'id' is fully described in the schema (100% coverage) as 'Change request id, from list_change_requests.' The description does not add additional semantic meaning beyond what the schema already provides. Baseline 3 is appropriate since the schema handles the explanation.
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 verb 'Get', the resource 'full detail for one change request', and specifies what is included (user request, element, page URL, screenshot URL). It also implies the tool's role in the workflow by saying 'Call this before making the change', distinguishing it from siblings like list_change_requests (list all) and update_status (update).
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 explicitly says 'Call this before making the change', providing clear when-to-use guidance. While it doesn't list exclusions or alternatives, the context of sibling tools (list, set, update) makes the intended usage clear. The instruction to use before implementation is strong guidance.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
list_change_requestsList change requestsARead-onlyIdempotentInspect
List change requests submitted by end users on sites you ship. Optionally filter by status. Start here to see what people are asking for.
| Name | Required | Description | Default |
|---|---|---|---|
| status | No | Optional status filter: new, accepted, building, preview, approved, shipped, or rejected. Omit to list every open request. |
Output Schema
| Name | Required | Description |
|---|---|---|
| requests | Yes | Matching change requests, newest first. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint, idempotentHint, openWorldHint, and destructiveHint false. The description adds no behavioral traits beyond these, such as pagination or ordering. It does not contradict annotations.
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 with no extraneous words: first sentence states purpose and filter, second provides guidance. Front-loaded and efficient.
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 the simple tool (one optional param, output schema present), the description covers the core functionality. It omits details like result ordering or limits, but these are not critical for a straightforward list tool.
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 a full description of the status parameter and its values. The description only echoes 'Optionally filter by status,' adding no new meaning.
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 lists change requests submitted by end users, with optional status filtering. It distinguishes from sibling tools like get_change_request (single request) and update_status (status update).
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 advises 'Start here to see what people are asking for,' implying it's the entry point for viewing requests. It does not explicitly contrast with alternatives or mention when not to use, but the sibling tool names provide context.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
set_preview_urlAttach preview URLAIdempotentInspect
Attach a deploy-preview URL to a change request and mark it ready for the requester to review.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Change request id. | |
| url | Yes | Deploy-preview URL (from your host) that the requester will review. |
Output Schema
| Name | Required | Description |
|---|---|---|
| id | Yes | Change request id. |
| status | Yes | New status, set to "preview". |
| review_url | Yes | Page where the requester reviews and approves the change. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations indicate idempotent and non-destructive, and description mentions 'mark it ready' as behavioral effect. However, it does not clarify behavior if URL already exists or if change request is not found. Adds some value beyond annotations but incomplete.
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 conveying all necessary information without extraneous words. Well-structured and easy to parse.
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 tool with two parameters and output schema present, description covers core purpose and effect. However, missing details like prerequisite (change request must exist) or error cases, mildly reducing 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 parameters are documented. Description repeats 'deploy-preview URL' but adds no new semantics beyond the schema, such as constraints on URL format or implications of the id. Baseline score applies.
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 the action: attaching a deploy-preview URL to a change request and marking it ready for review. It uses specific verb and resources, differentiating from sibling tools like get_change_request (read) and update_status (status change without URL).
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?
No explicit guidance on when to use this tool vs alternatives like update_status. It implies use when attaching a URL, but lacks exclusions or context for when not to use it. Adequate but minimal.
Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.
update_statusUpdate statusAIdempotentInspect
Update a change request status as it moves through the build and review flow.
| Name | Required | Description | Default |
|---|---|---|---|
| id | Yes | Change request id. | |
| status | Yes | New status: new, accepted, building, preview, approved, shipped, or rejected. |
Output Schema
| Name | Required | Description |
|---|---|---|
| id | Yes | Change request id. |
| status | Yes | The status now set on the request. |
Tool Definition Quality
Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?
Annotations already declare readOnlyHint=false, destructiveHint=false, idempotentHint=true. The description adds context about the build and review flow but does not contradict annotations. No additional behavioral details beyond what annotations provide.
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, no wasted words. Front-loaded with 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?
Given output schema existence and simple parameters, the description sufficiently covers the tool's purpose. Could mention the status progression order but not required.
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 descriptions for both parameters. The description does not add meaning beyond the schema; it merely restates 'update status'.
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 verb 'update' and resource 'change request status' with context 'as it moves through the build and review flow'. It distinguishes from siblings like get_change_request (read) and set_preview_url (URL-specific).
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 for moving status along a flow, but does not explicitly state when to use or provide alternatives. No exclusions or when-not guidance.
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!