Skip to main content
Glama

Share text with another agent or person

share_text

Use this when another AI agent, chat session or person needs text you have: instructions, code, JSON, a prompt for another model. Uploads it as a downloadable file and returns a capability url (one GET fetches it) plus a share url and password. No account or API key needed.

Input Schema

TableJSON Schema
NameRequiredDescriptionDefault
contentYesThe text to share
filenameNoFile name for the download, e.g. instructions.mdhandoff.md
passwordNoOptional custom password (8-64 chars); a strong one is generated when omitted
expires_daysNoDays until the file is deleted (1-180, default 30)

TDQS

A4.2/5.0
Behavior4/5

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

With annotations already indicating non-read-only behavior, the description adds valuable context: 'Uploads it as a downloadable file and returns a capability url (one GET fetches it) plus a share url and password. No account or API key needed.' This clarifies the operational behavior and authentication requirements beyond what annotations convey. It does not contradict any annotations.

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 exceptionally concise and well-structured: two sentences that front-load the use case and then describe the mechanism and return values. Every word contributes value, with no redundancy or unnecessary detail.

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?

Given the tool's moderate complexity (4 parameters, no output schema), the description adequately explains the return values (capability URL, share URL, password) and the core behavior. It doesn't explicitly mention expiration, but that is covered in the schema's parameter description for expires_days. Overall, it provides enough context for an agent to invoke the tool correctly.

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?

The input schema has 100% coverage for all four parameters, providing full descriptions for content, filename, password, and expires_days. The description does not add additional parameter-specific details beyond the schema, so the baseline score of 3 is appropriate.

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 clearly states the tool's function: sharing text content with another agent or person by uploading it and returning a capability URL, share URL, and password. It uses specific verbs ('Uploads', 'returns') and distinguishes from siblings like share_file and share_conversation by focusing on text content you already have.

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 states when to use the tool ('when another AI agent, chat session or person needs text you have'), providing clear context. It also notes 'No account or API key needed,' which is a useful prerequisite. However, it does not explicitly mention alternatives or when not to use it, so it falls short of a 5.

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.

TDQS

A4.3/5.0
Disambiguation3/5

receive_file is clearly distinct, but the three share_* tools have fuzzy boundaries: share_file accepts text and is described as a 'whole handoff', which overlaps with both share_text and share_conversation. The use-case descriptions help separate them, but an agent could reasonably select the wrong one when sharing text or a handoff bundle.

Naming Consistency5/5

All tools follow the same verb_noun pattern: receive_file, share_conversation, share_file, share_text. The verb prefixes (receive/share) reflect the two core directions and make the set predictable.

Tool Count5/5

Four tools is a well-scoped size for a transfer server: one receive operation, one conversation handoff, one file upload, and one text upload. Each tool earns a place and there is no bloat.

Completeness4/5

The core send/receive workflows are covered, including text, files, and a full AI-to-AI handoff. Minor gaps exist: large local files are delegated to an external HTTP API rather than handled by a tool, and there is no delete/expiry management for shared content.

Resources