Skip to main content
Glama

xi.pe

Server Details

Share text at a short URL. No account, no API key, expires within 7 days.

Status
Healthy
Last Tested
Transport
Streamable HTTP
URL

Glama MCP Gateway

Connect through Glama MCP Gateway for full control over tool access and complete visibility into every call.

MCP client
Glama
MCP server

Full call logging

Every tool call is logged with complete inputs and outputs, so you can debug issues and audit what your agents are doing.

Tool access control

Enable or disable individual tools per connector, so you decide what your agents can and cannot do.

Managed credentials

Glama handles OAuth flows, token storage, and automatic rotation, so credentials never expire on your clients.

Usage analytics

See which tools your agents call, how often, and when, so you can understand usage patterns and catch anomalies.

100% free. Your data is private.
Tool DescriptionsA

Average 4.5/5 across 3 of 3 tools scored.

Server CoherenceA
Disambiguation5/5

Each tool performs a distinct action on a paste: create, delete, and read. There is no overlap in purpose, making selection unambiguous.

Naming Consistency5/5

All tool names follow the consistent verb_noun pattern: create_paste, delete_paste, read_paste. This is perfectly predictable.

Tool Count5/5

Three tools is the right scope for a paste service, covering the essential lifecycle without redundancy. It fits comfortably within the ideal range.

Completeness5/5

The core CRUD operations for a paste (create, read, delete) are all present. Pastes are immutable by nature, so update is not expected, making this surface complete.

Available Tools

3 tools
create_pasteCreate a pasteAInspect

Store UTF-8 text at xi.pe and get back a short URL anyone can read. Use it when text has to leave the conversation: someone asks for a shareable link to text you already have -- 'share this', 'give me a URL for it'; something a human needs to read would flood the chat inline -- a long diff, a stack trace, a generated config, a report; or something has to reach another agent, session or machine that does not share your filesystem. Maximum 2 MiB (2,097,152 bytes); larger is rejected, not truncated. Returns url, code, delete_token, size and expires. The delete_token is shown once and is the only way to delete the paste -- pass it to the user verbatim if a human is in the loop.

ParametersJSON Schema
NameRequiredDescriptionDefault
ttlNohow long the paste should live: a number followed by m, h or d (for example 30m, 6h, 3d). Defaults to the 7 day maximum. Cannot be longer than 7d.
longNouse a 23-character code instead of the default 6. Worth it when a lucky guess would actually matter -- credentials, private logs, anything with real consequences if a stranger landed on it.
contentYesthe UTF-8 text to store. Maximum 2 MiB (2,097,152 bytes), counted as UTF-8 bytes rather than characters. Oversize is rejected with no truncation. No line-length or line-count limit.

Output Schema

ParametersJSON Schema
NameRequiredDescription
urlYesthe URL of the new paste
codeYesthe paste's code
sizeYesstored size in bytes
expiresYesRFC 3339 timestamp after which the paste is gone
delete_tokenYesthe only capability that can delete this paste. Shown once -- surface it verbatim.
Behavior5/5

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

While annotations provide no safety hints (all false), the description compensates by disclosing key behaviors: the paste is publicly readable, the 2 MiB limit with rejection (not truncation), the return fields, and the one-time delete_token that is the only deletion mechanism. It even advises passing the token to the user verbatim.

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 description is about 150 words across five sentences, but every sentence adds value—purpose, usage triggers, size limit, return values, and delete_token caution. It is front-loaded with the core function and uses examples effectively, though slightly verbose for its purpose.

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 the tool's complexity (3 params, output schema present) and the richness of annotations (all false), the description fully covers usage, behavioral constraints, and return expectations. It even addresses the delete_token's one-time nature, ensuring an agent understands the full workflow without needing external docs.

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%, with each parameter having a detailed description (ttl format, long security rationale, content limits). The description adds little beyond the schema, only reinforcing the size cap and mentioning the delete_token (return field). Thus baseline 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: 'Store UTF-8 text at xi.pe and get back a short URL anyone can read.' This is a specific verb-resource pair that distinctly differentiates it from sibling tools (delete_paste, read_paste) by describing the creation action.

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

Usage Guidelines5/5

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

The description provides explicit usage scenarios: 'Use it when text has to leave the conversation...' with concrete examples like sharing a link for text, offloading long diffs/stack traces, and reaching other agents/sessions. It also specifies the size limit and rejection behavior, offering clear boundaries for when to use.

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

delete_pasteDelete a pasteA
DestructiveIdempotent
Inspect

Delete a xi.pe paste before it expires. Requires the delete_token returned when it was created; there is no other way to prove ownership.

ParametersJSON Schema
NameRequiredDescriptionDefault
codeYesthe paste's code (6 characters, or 23 if created with long), or its full xi.pe URL
delete_tokenYesthe delete_token returned when the paste was created
Behavior4/5

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

The description adds value beyond the annotations by explaining the necessity of the delete_token for ownership proof, and noting that deletion can occur before the paste's natural expiration. The destructiveHint annotation is confirmed. However, the description could also mention if the operation is irreversible or if it affects other users, but given the annotations already indicate destructive and idempotent behavior, the description is largely sufficient.

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 two sentences, no wasted words. The first sentence front-loads the action and timing constraint, the second explains the key prerequisite. Every sentence earns its place.

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 has only 2 required parameters and no nested objects, the description is complete. It explains the action, timing, and authentication requirement. It could be more complete by describing what happens upon success (e.g., confirmation message) but the absence of an output schema makes this acceptable.

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 coverage is 100%, so the baseline is 3. The description adds value by explaining why the delete_token is required ('provides proof of ownership') and clarifies that code can be a short or long code or full URL. This goes beyond the schema's basic descriptions, justifying a score of 4.

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 uses a specific verb ('Delete') and resource ('a xi.pe paste'), clearly distinguishing it from siblings like create_paste and read_paste. It also adds the important context that deletion can happen before expiration, which clarifies the scope beyond a simple delete.

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

Usage Guidelines5/5

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

The description explicitly states when to use this tool (to delete before expiration) and what prerequisite is required (the delete_token). It implies when not to use it—if you lack the token, you cannot prove ownership—which is a clear exclusion criterion. No sibling tool is mentioned, but the token requirement effectively distinguishes it.

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

read_pasteRead a pasteA
Read-only
Inspect

Fetch the text of an existing xi.pe paste -- including one a user or another agent just handed you. Accepts either the code or the full URL.

ParametersJSON Schema
NameRequiredDescriptionDefault
codeYesthe paste's code (6 characters, or 23 if created with long), or its full xi.pe URL
Behavior3/5

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

The readOnlyHint annotation already indicates no state changes, and the description aligns with that. The description does not add extra behavioral details (e.g., error behavior, rate limits), but given the annotation coverage, this is acceptable and not contradictory.

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 a single, focused sentence with no unnecessary words. It succinctly encapsulates the tool's purpose and input flexibility.

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 simple read operation, the description is complete. It provides the necessary input identification and the action, and no output schema exists, so return details are not required. It fully serves its purpose.

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?

The parameter 'code' is well-described in the schema (6-char code, 23-char long, or full URL), and the description reinforces this. The schema covers 100% of parameters, and the description adds clarity about accepted formats without redundancy.

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 fetches the text of an existing paste, distinguishing it from sibling tools (create_paste, delete_paste). It also specifies the input format (code or URL), making the action and target unambiguous.

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 implies usage when a paste code or URL is available, and the note about 'a user or another agent just handed' suggests immediate retrieval. It doesn't explicitly mention alternatives, but the read nature is obvious against create/delete, so the guidance is clear enough.

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

Discussions

No comments yet. Be the first to start the discussion!

Related MCP Servers

  • A
    license
    A
    quality
    D
    maintenance
    Create and read burn-after-read encrypted notes. AES-256-GCM E2E encryption with self-destructing URLs for secure credential handoff between users and AI agents.
    2
    73
    1
    MIT
  • A
    license
    A
    quality
    A
    maintenance
    Publish HTML or markdown artifacts (reports, dashboards, demos) as instant shareable links with TTL expiry, social preview cards, and optional password protection. Works with the hosted service or a self-hosted instance.
    1
    18
    13
    MIT
  • A
    license
    -
    quality
    A
    maintenance
    Enables sharing and reading encrypted files (text, images, logs) for AI workflows, with automatic 24-hour expiration and host-blind security.
    84
    155
    MIT
  • A
    license
    -
    quality
    A
    maintenance
    Enables AI agents to publish HTML or Markdown to a public URL with a single HTTP POST, automatically converting Markdown to a styled webpage, with no account or setup required.
    2
    1
    MIT

View all MCP Servers

Try in Browser

Your Connectors

Sign in to create a connector for this server.

Resources