# remove_from_watchlist

A write tool on the Ebay MCP server.

Agent View of the PolicyLayer registry record for `remove_from_watchlist`. HTML page: https://policylayer.com/tools/acato-ebay-mcp/remove-from-watchlist

## Facts

- Tool: `remove_from_watchlist`
- Server: Ebay (`acato/ebay-mcp`) — https://policylayer.com/tools/acato-ebay-mcp.md
- Homepage: https://github.com/acato/ebay-mcp
- Risk category: Write (Medium risk)
- Registry record: grade D, identity unverified
- Server rate-limited: no
- Parameters: 0
- Recommended policy verdict: Rate-limited

## Example call (MCP tools/call, JSON-RPC 2.0)

```json
{
  "jsonrpc": "2.0",
  "id": 1,
  "method": "tools/call",
  "params": {
    "name": "remove_from_watchlist",
    "arguments": {}
  }
}
```

## Why remove_from_watchlist is rated Medium

Removing an item from a watchlist modifies user data (the watchlist) but is generally reversible — the item can be re-added. This places it in the Write category. The description is empty, so confidence is reduced, but the name and context strongly imply a watchlist removal operation. Severity is medium because misuse could cause a user to lose tracked items, but no financial or irreversible data loss occurs.

From the tool's own definition: "Tool name 'remove_from_watchlist' on an eBay buyer-side MCP server with sibling tools 'add_to_watchlist' and 'get_watchlist'."

## Use case

AI agents use remove_from_watchlist to create or update resources in Ebay, usually the action step of a workflow, after the agent has gathered context. Every call changes real data in your Ebay environment.

## Recommended policy (PolicyLayer)

Verdict: **Rate-limited**. Enforced by the PolicyLayer MCP gateway (https://policylayer.com/mcp-gateway) before a call reaches Ebay:

```json
{
  "version": "1",
  "default": "deny",
  "tools": {
    "remove_from_watchlist": {
      "limits": [
        {
          "counter": "remove_from_watchlist_rate",
          "window": "minute",
          "max": 30,
          "scope": "grant"
        }
      ]
    }
  }
}
```

## Other tools on Ebay (14)

- `start_user_auth` — Execute — https://policylayer.com/tools/acato-ebay-mcp/start-user-auth.md
- `buy_now` — Financial — https://policylayer.com/tools/acato-ebay-mcp/buy-now.md
- `make_best_offer` — Financial — https://policylayer.com/tools/acato-ebay-mcp/make-best-offer.md
- `place_bid` — Financial — https://policylayer.com/tools/acato-ebay-mcp/place-bid.md
- `get_active_bids` — Read — https://policylayer.com/tools/acato-ebay-mcp/get-active-bids.md
- `get_item` — Read — https://policylayer.com/tools/acato-ebay-mcp/get-item.md
- `get_lost_items` — Read — https://policylayer.com/tools/acato-ebay-mcp/get-lost-items.md
- `get_watchlist` — Read — https://policylayer.com/tools/acato-ebay-mcp/get-watchlist.md
- `get_won_items` — Read — https://policylayer.com/tools/acato-ebay-mcp/get-won-items.md
- `list_hosts` — Read — https://policylayer.com/tools/acato-ebay-mcp/list-hosts.md
- `search` — Read — https://policylayer.com/tools/acato-ebay-mcp/search.md
- `server_info` — Read — https://policylayer.com/tools/acato-ebay-mcp/server-info.md
- `add_to_watchlist` — Write — https://policylayer.com/tools/acato-ebay-mcp/add-to-watchlist.md
- `complete_user_auth` — Write — https://policylayer.com/tools/acato-ebay-mcp/complete-user-auth.md

## For agents

This record is a snapshot. Live verdicts and the full registry:

- Check every server in your MCP config at once: `npx -y policylayer stack`
- Vet a server before you add it: install the mcp-precheck skill — `npx skills add https://policylayer.com` (skill text: https://policylayer.com/skill.md)
- Query the registry over MCP: endpoint `https://api.policylayer.com/mcp` — tools `check_mcp_server`, `check_mcp_stack`, `check_tool`, `search_registry`, `get_change_events`

---

Source: the PolicyLayer MCP registry — one continuously verified record per MCP server. Full record: https://policylayer.com/registry?q=acato-ebay-mcp · API: https://policylayer.com/registry/api · Policy library: https://policylayer.com/policies/acato-ebay-mcp
