← bestboy.app

INDIVIDUAL MCP TOOL

delete_wishlist

Move a wishlist owned by the authenticated user to Trash (soft delete) - same as deleting it in the app.

bestboy.appnone authenticationAvailability not checked

LIVE ENDPOINT

https://bestboy.app/mcp

No auth detected

Connect to this endpoint to inspect the live schema for delete_wishlist and invoke it with your own arguments.

Indexed input schema

{}

Risk classification

Potential side effects detected · medium confidence · heuristic, not a guarantee.

  • A tool name or description contains a deletion term.

Parent server

bestboy.app

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.bestboy]
url = "https://bestboy.app/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "bestboy": {
      "type": "http",
      "url": "https://bestboy.app/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: bestboy
Remote MCP URL: https://bestboy.app/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "bestboy": {
      "url": "https://bestboy.app/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "bestboy": {
      "type": "http",
      "url": "https://bestboy.app/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "bestboy",
  "transport": "streamable-http",
  "url": "https://bestboy.app/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

Related tools

  • list_my_wishlists — List the authenticated user's OWN wishlists, including any list they collaborate on (someone else invited them to help build/manage) - each entry's `role` is 'owner' or 'collaborator'.
  • create_wishlist — Create a new wishlist for the authenticated user.
  • add_wish — Add a PERSONAL wish - something the authenticated user wants for themselves.
  • share_wishlist — Get the shareable URL for a wishlist owned by the authenticated user.
  • get_shared_wishlist — Fetch a publicly shared wishlist and its wishes by share token.
  • reserve_wish — Anonymously reserve a wish on a shared wishlist so the recipient cannot see who reserved it.
  • unreserve_wish — Undo a reservation previously made with reserve_wish.
  • list_wishes — List the authenticated user's wishes.