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.
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.
Tool Definition Quality
Average 4.5/5 across 3 of 3 tools scored.
Each tool performs a distinct action on a paste: create, delete, and read. There is no overlap in purpose, making selection unambiguous.
All tool names follow the consistent verb_noun pattern: create_paste, delete_paste, read_paste. This is perfectly predictable.
Three tools is the right scope for a paste service, covering the essential lifecycle without redundancy. It fits comfortably within the ideal range.
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 toolscreate_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.
| Name | Required | Description | Default |
|---|---|---|---|
| ttl | No | how 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. | |
| long | No | use 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. | |
| content | Yes | the 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
| Name | Required | Description |
|---|---|---|
| url | Yes | the URL of the new paste |
| code | Yes | the paste's code |
| size | Yes | stored size in bytes |
| expires | Yes | RFC 3339 timestamp after which the paste is gone |
| delete_token | Yes | the only capability that can delete this paste. Shown once -- surface it verbatim. |
Tool Definition Quality
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.
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.
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.
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.
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.
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 pasteADestructiveIdempotentInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| code | Yes | the paste's code (6 characters, or 23 if created with long), or its full xi.pe URL | |
| delete_token | Yes | the delete_token returned when the paste was created |
Tool Definition Quality
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.
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.
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.
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.
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.
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 pasteARead-onlyInspect
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.
| Name | Required | Description | Default |
|---|---|---|---|
| code | Yes | the paste's code (6 characters, or 23 if created with long), or its full xi.pe URL |
Tool Definition Quality
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.
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.
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.
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.
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.
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.
Claim this connector by publishing a /.well-known/glama.json file on your server's domain with the following structure:
{
"$schema": "https://glama.ai/mcp/schemas/connector.json",
"maintainers": [{ "email": "your-email@example.com" }]
}The email address must match the email associated with your Glama account. Once published, Glama will automatically detect and verify the file within a few minutes.
Control your server's listing on Glama, including description and metadata
Access analytics and receive server usage reports
Get monitoring and health status updates for your server
Feature your server to boost visibility and reach more users
For users:
Full audit trail – every tool call is logged with inputs and outputs for compliance and debugging
Granular tool control – enable or disable individual tools per connector to limit what your AI agents can do
Centralized credential management – store and rotate API keys and OAuth tokens in one place
Change alerts – get notified when a connector changes its schema, adds or removes tools, or updates tool definitions, so nothing breaks silently
For server owners:
Proven adoption – public usage metrics on your listing show real-world traction and build trust with prospective users
Tool-level analytics – see which tools are being used most, helping you prioritize development and documentation
Direct user feedback – users can report issues and suggest improvements through the listing, giving you a channel you would not have otherwise
The connector status is unhealthy when Glama is unable to successfully connect to the server. This can happen for several reasons:
The server is experiencing an outage
The URL of the server is wrong
Credentials required to access the server are missing or invalid
If you are the owner of this MCP connector and would like to make modifications to the listing, including providing test credentials for accessing the server, please contact support@glama.ai.
Discussions
No comments yet. Be the first to start the discussion!
Related MCP Servers
- AlicenseAqualityDmaintenanceCreate 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.2731MIT
- AlicenseAqualityAmaintenancePublish 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.11813MIT
- Alicense-qualityAmaintenanceEnables sharing and reading encrypted files (text, images, logs) for AI workflows, with automatic 24-hour expiration and host-blind security.84155MIT
- Alicense-qualityAmaintenanceEnables 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.21MIT