Skip to main content
Glama
soil-dev

capsulemcp

by soil-dev

remove_party_website_by_id

Remove a website from a party by its row ID. Find the ID via get_party, then delete the entry. Reversible with add_party_website.

Instructions

Remove one website entry from a party by its row id. Atomic and reversible — no confirm: true gate (re-add with add_party_website). Discover the id via get_party. Idempotent on retry: response is {removed: true, alreadyRemoved: false, partyId, websiteId, party} on a fresh remove or {removed: true, alreadyRemoved: true, partyId, websiteId} if the row was already gone.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
partyIdYes
websiteIdYesCapsule's id for the website row. Read it from get_party (each entry in websites carries an id).

Schema Changelog

Changes observed during successful MCP inspections.

  1. Changed1 schema field changedv2.3.0
    • addedInput schema / required
      Added value: +[
      +  "partyId",
      +  "websiteId"
      +]
  2. Addedv1.7.0
  3. Removedv1.6.2
  4. First observedv1.0.0

TDQS

A4.7/5.0
Behavior5/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

The description discloses atomicity, reversibility, lack of a confirm gate, idempotent retry behavior, and the exact response shapes for fresh removals versus already-removed rows. This goes well beyond the sparse annotations and gives the agent an accurate mental model of side effects.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Two sentences with no filler. The first sentence front-loads the action and the second packs the idempotency and response details efficiently.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given there is no output schema, the description provides the response shapes for both fresh and repeated removals, explains id discovery, and confirms reversibility. An agent has everything needed to invoke and interpret the tool correctly.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

websiteId is richly explained as Capsule's id for the website row, discoverable from get_party where each entry carries an id. partyId's meaning is conveyed by its name and the 'party' context. The description adds useful guidance beyond the schema's partial documentation.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description states 'Remove one website entry from a party by its row id' — a specific verb, resource, and unit of work. It distinguishes the tool from sibling tools like remove_party_email_address_by_id and remove_party_phone_number_by_id by targeting website entries specifically.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description explicitly says how to discover the id via get_party and notes that the operation is reversible via add_party_website. It does not enumerate when not to use it, but the tool's role among siblings is clear.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Deploy Server

Other Tools