Skip to main content
Glama
calebn
by calebn

create_review_share_tool

Generate shareable review links for podcast project versions, controlling access, permissions, and optional MCP remote capabilities for collaborators.

Instructions

Create a review share URL (Anyone with the link by default).

role: optional Docs-like preset viewer|commenter|editor (overrides capabilities). capabilities: comma-separated play,view,comment,reply,action,suggest,edit,mcp. with_mcp: also grant capability-scoped remote MCP ({base}/mcp/{token}/mcp). general_access: link (default) or restricted (ACL + sign-in). require_sign_in: force login even on link shares. invite_emails: comma-separated emails to add to the ACL.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
roleNo
with_mcpNo
version_idYes
capabilitiesNoplay,comment,reply,action
project_pathYes
invite_emailsNo
general_accessNolink
public_base_urlNohttp://127.0.0.1:8765
require_sign_inNo

Output Schema

TableJSON Schema
NameRequiredDescriptionDefault
resultYes

Schema Changelog

Changes observed during successful MCP inspections.

  1. First observedv0.1.0

TDQS

A3.7/5.0
Behavior3/5

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

With no annotations, the description carries the full behavioral burden. It does disclose useful behavior such as 'Anyone with the link by default', access modes, MCP grant, and sign-in forcing. However, it omits side effects, permission requirements, reversibility/revocation, and whether calling it creates a new share or updates an existing one.

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

Conciseness4/5

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

The one-sentence purpose is front-loaded, followed by a compact parameter cheat-sheet. No filler words, though the raw newline representation makes it slightly harder to scan than a properly formatted list.

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

Completeness4/5

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

For a 9-parameter tool with no annotations and zero schema-level descriptions, the description is nearly sufficient: it covers core behavior, the meaningful access/capability parameters, and defaults. Output schema presence reduces the need to describe return values, but missing explicit coverage of project_path/version_id/public_base_url and lack of sibling-context guidance leave minor gaps.

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?

Schema description coverage is 0%, so the description must compensate and mostly does: it explains role, capabilities, with_mcp, general_access, require_sign_in, and invite_emails with values and defaults. It does not explicitly describe project_path, version_id, or public_base_url, though public_base_url is implied via '{base}' in the with_mcp line.

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 action and resource: 'Create a review share URL', and immediately states the default access mode. This clearly separates it from sibling tools such as create_record_room_tool and publish_review_version_tool.

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

Usage Guidelines2/5

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

No guidance is given on when to use this tool versus alternatives like create_record_room_tool or publish_review_version_tool. There are no prerequisites, exclusions, or conditions; the usage is only implied by the verb 'Create'.

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