# deslay1/amendor-mcp [Health: Active]

**Category:** 🔒 Delivery  
**Repository:** https://github.com/deslay1/amendor-mcp  
**GitHub Stars:** 2  
**Views:** 2  
**Installs:** 0  
**Upvotes:** 0  
**Directory Page:** https://allmcps.com/mcp/deslay1-amendor-mcp

## Description
Lets the non-technical people you build for request UI changes directly on your live site, then pulls each request (with the exact element and page) into your coding agent so it builds it on a branch and opens a pull request. Works with Claude Code, Cursor, Cline, Codex, and remote agents over HTTP. npx -y amendor-mcp

## Tools
Capabilities this server exposes over MCP:

- **list_change_requests** — List change requests submitted by end users on sites you ship. Optionally filter by status. Start here to see what people are asking for.
- **get_change_request** — 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.
- **set_preview_url** — Attach a deploy-preview URL to a change request and mark it ready for the requester to review.
- **update_status** — Update a change request status as it moves through the build and review flow.
- **start_build** — LOCAL MODE ONLY (repo on this machine, no host). Cuts a branch + git worktree the local Amendor serves at /preview/<id>/. For the normal GitHub flow, do NOT call this: instead branch "relay/task-<id>" in your own repo clone, edit, commit, push, and open a PR tagged "relay-task:<id>" — the host builds the preview and the webhook captures it automatically.
- **publish_preview** — Mark a change request ready for the requester to review. The preview is already live from the worktree; this flips status to "in preview" and surfaces the link.
- **ship_change** — Ship an approved change: merge the task branch into the project base, remove the worktree, and mark it shipped. Production (the live site) now reflects the change.

## Claude Desktop Quick Installation
Install path detected from listing signals. Uses `npx` (confidence: high):

```json
"mcpServers": {
  "amendor-mcp": {
    "command": "npx",
    "args": ["-y","amendor-mcp"],
    "env": {
      "AMENDOR_API": "",
      "AMENDOR_TOKEN": ""
    }
  }
}
```

**Requires environment variables:** `AMENDOR_API`, `AMENDOR_TOKEN` — the values above are empty placeholders; fill in real credentials before running (see the repository for what each one is for).

## Documentation & README

# amendor-mcp

[![Featured on Product Hunt](https://img.shields.io/badge/Product%20Hunt-Featured-da552f?logo=producthunt&logoColor=white)](https://www.producthunt.com/products/amendor/amendor/launch-day)
[![amendor-mcp MCP server](https://glama.ai/mcp/servers/deslay1/amendor-mcp/badges/score.svg)](https://glama.ai/mcp/servers/deslay1/amendor-mcp)

Connect your coding agent to [Amendor](https://amendor.site).

Amendor lets the people you build for request changes right on your live site. Requests land on a board. This connector pulls them into your agent (Claude Code, Cursor, Cline, Codex, any MCP client) so it can build each one on a branch and open a pull request.

## Setup

1. Sign in at [amendor.site](https://amendor.site) and create a project.
2. Go to Settings and copy the connector command. It already has your token filled in and looks like this:

   ```
   claude mcp add amendor --env AMENDOR_API=https://amendor.site --env AMENDOR_TOKEN=your-token -- npx -y amendor-mcp
   ```

3. Run it in your repo.

`AMENDOR_TOKEN` is the key that ties the connector to your Amendor account. You do not make it up. Amendor generates it and shows it inside the ready-made command on the Settings page, so create a project first, then copy the whole command.

## Use it

Ask your agent: "show me the change requests," pick one, "build that one." It opens a pull request, your host builds a preview, the requester approves, you merge.

Tools: `list_change_requests`, `get_change_request`, `start_build`, `set_preview_url`, `publish_preview`, `update_status`, `ship_change`.

MIT license. More at [amendor.site](https://amendor.site).

