Skip to main content
Glama

Embers: Tabletop RPG Toolkit

Remove a friend

play_remove_friend
DestructiveIdempotent

Remove an existing friend connection. Pass friendId from play_list_my_friends. Destructive on the social graph; both sides lose the connection.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
friendIdYes`_id` of the friend record on the calling user's friends list. NOT the other user's id. Use play_list_pending_friends (for accept/decline) or play_list_my_friends (for remove) to obtain it.

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault

No arguments

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observed

TDQS

A4.3/5.0
Behavior4/5

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

Annotations already flag this as destructive and not read-only. The description adds meaningful behavioral context beyond those flags: 'Destructive on the social graph; both sides lose the connection,' which tells the agent the exact blast radius and impact. It does not address auth or reversibility, but the annotations carry the core safety signal.

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?

The description is three short sentences with no filler. It front-loads the action, then supplies the parameter source, then the destructive consequence. Every sentence earns its place.

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?

For a single-parameter, destructive tool with an output schema and rich parameter documentation, the description is complete. It covers what the tool does, where the parameter comes from, and the social-graph consequence, leaving no important selection or invocation gap.

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

Parameters3/5

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

Schema coverage is 100% and the parameter description already explains that `friendId` is the friend record `_id` on the calling user's friends list, NOT the other user's id, and how to obtain it. The description repeats the provenance ('Pass `friendId` from play_list_my_friends') but adds no new parameter semantics, so the baseline of 3 applies.

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 opens with a specific verb and resource: 'Remove an existing friend connection.' It distinguishes this from pending-request operations by emphasizing 'existing friend connection,' which separates it from tools like play_cancel_friend_request, play_accept_friend_request, and play_decline_friend_request.

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 gives clear operational guidance by telling the agent to pass `friendId` from play_list_my_friends, which indicates the correct source and workflow. It does not explicitly name alternative tools for accept/decline/cancel, but the 'existing friend connection' framing implies the boundary; the schema's parameter description further clarifies that play_list_pending_friends is for accept/decline.

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

Try in Browser

Glama MCP Gateway

Add one secure layer between your agents and this server.

Resources