# xi.pe (remote · xi.pe)

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

- Trust score: 63/100 (medium)
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-20

## Components

- remote · `xi.pe`: 63/100 (this document), [markdown](https://verifymcp.io/servers/pe-xi-xipe/xi.md), [page](https://verifymcp.io/servers/pe-xi-xipe/xi)

## Channel facts

- Endpoint: `https://xi.pe/mcp`
- Transports: `streamable-http`
- Auth: `none`
- Version: `1.0.0`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically against the live server, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-20.

- **Endpoint Security**: 57/100
  - The endpoint's TLS certificate is valid, in date, and uses a strong key.
  - Authorisation check failed: no authorisation is required to call this server, and it exposes a tool marked destructive (delete_paste).
  - HTTPS is enforced; there's no plaintext access path.
  - HSTS check failed: the Strict-Transport-Security header is absent.
  - DNSSEC check failed: this domain isn't protected by DNSSEC.
- **Transport & Reachability**: 100/100
  - Verified streamable-http transport via a live MCP handshake.
- **Schema Quality & AI Usability**: 72/100
  - AI-judged instruction clarity (excellent).
  - Context-footprint check failed: tool/resource definitions use about 756 tokens (~252/item across 3 items; 3 tools + 0 resources), over budget; trim descriptions and params.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 7/100
  - Stability observed for 2 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
  - Structured output schemas are declared (33% of tools); any adoption earns full credit.
- **Capabilities**: 100/100
  - Implements a current MCP spec version (2026-07-28).

## Install

### Claude

```bash
claude mcp add --transport http pe-xi-xipe https://xi.pe/mcp
```

### Codex

```toml
[mcp_servers.pe-xi-xipe]
url = "https://xi.pe/mcp"
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "pe-xi-xipe": {
      "type": "remote",
      "url": "https://xi.pe/mcp",
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add pe-xi-xipe --url https://xi.pe/mcp --transport streamable-http
```

### Hermes

```yaml
mcp_servers:
  pe-xi-xipe:
    url: "https://xi.pe/mcp"
```

### Other

```json
{
  "mcpServers": {
    "pe-xi-xipe": {
      "type": "http",
      "url": "https://xi.pe/mcp"
    }
  }
}
```

The mcpServers block is a cross-client convention. Remote transports vary, so check your client's docs.

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-20 (score 63, 0)

- [functional] Server version: 3b7c9eb37d9aac91943fd0da4b0a03af229e5b1a → 3d98f0382201bb817c96d865ffcfd1e5d64f10ff

### 2026-08-19 (score 63, 0)

- [security] The server rewrote its instructions, which are the text every model session reads
- [security] Tool “create_paste” rewrote its description, which is the text the model reads
- [security] Tool “read_paste” rewrote its description, which is the text the model reads
- [functional regression] Schema quality: 206 → 252
- [functional improvement] Stability: unverified → 0.03
- [functional] Server version: ced4061009ec60154ccc95fc458f6705d55fdebe → 3b7c9eb37d9aac91943fd0da4b0a03af229e5b1a
- [cosmetic] “create_paste” reworded the description of “long”
- [cosmetic] “delete_paste” reworded the description of “code”
- [cosmetic] “read_paste” reworded the description of “code”

### 2026-08-18 (score 63)

First indexed and scored.

## MCP tools (3)

### `create_paste` (~322 tokens)

Create a paste

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.

Input parameters:

- `content` (string, required): 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.
- `long` (boolean): 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.
- `ttl` (string): 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.

Output parameters:

- `code` (string): the paste's code
- `delete_token` (string): the only capability that can delete this paste. Shown once -- surface it verbatim.
- `expires` (string): RFC 3339 timestamp after which the paste is gone
- `size` (integer): stored size in bytes
- `url` (string): the URL of the new paste

### `delete_paste` (~83 tokens)

Delete a paste

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.

Input parameters:

- `code` (string, required): the paste's code (6 characters, or 23 if created with long), or its full xi.pe URL
- `delete_token` (string, required): the delete_token returned when the paste was created

### `read_paste` (~69 tokens)

Read a paste

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.

Input parameters:

- `code` (string, required): the paste's code (6 characters, or 23 if created with long), or its full xi.pe URL

## Diagnostics

Captured diagnostic sections: TLS, DNSSEC, Authorisation, Transports. The full working is on the page: https://verifymcp.io/servers/pe-xi-xipe/xi#diagnostics

## Score history

- 2026-08-20: 63
- 2026-08-19: 63
- 2026-08-18: 63

## Links

- Remote endpoint: https://xi.pe/mcp
- Website: https://xi.pe/
- Changelog RSS feed: https://verifymcp.io/servers/pe-xi-xipe/xi.xml
- Changelog JSON feed: https://verifymcp.io/servers/pe-xi-xipe/xi.json
- HTML version of this page: https://verifymcp.io/servers/pe-xi-xipe/xi
