← useclippy.cc

INDIVIDUAL MCP TOOL

list-items-tool

Read the items in a Clippy room (newest first).

useclippy.ccnone authenticationAvailability not checked

Input schema

{}

Risk classification

Inferred read-only · medium confidence · heuristic, not a guarantee.

  • No write-capable action terms were found; this is not proof that invocation has no side effects.

Parent endpoint

useclippy.cc

CONNECT WITH APPROVAL

Client installation

Review this server and its permissions before adding it. Secret placeholders must be set locally.

Codex

~/.codex/config.toml

[mcp_servers.clippy]
url = "https://useclippy.cc/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "clippy": {
      "type": "http",
      "url": "https://useclippy.cc/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: clippy
Remote MCP URL: https://useclippy.cc/mcp

Add this remote URL as a custom connector in Claude Desktop. Availability depends on the user plan and workspace policy.

Cursor

.cursor/mcp.json

{
  "mcpServers": {
    "clippy": {
      "url": "https://useclippy.cc/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "clippy": {
      "type": "http",
      "url": "https://useclippy.cc/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "clippy",
  "transport": "streamable-http",
  "url": "https://useclippy.cc/mcp"
}
MCP Inspector

Run the official MCP Inspector locally and enter the indexed Streamable HTTP endpoint.

Related tools

  • create-room-tool — Create a brand-new Clippy room and get back its 6-character code, a private owner_token, and a share URL.
  • store-item-tool — Post a piece of text to a Clippy room so it appears on every device and agent watching that room.
  • store-image-tool — Post one or more images (PNG, JPEG, GIF, or WEBP) to a Clippy room so they appear on every device watching it, optionally with a text caption.
  • room-status-tool — Check whether a Clippy room exists, whether it is password-protected, and how many items it holds — without reading the contents.
  • update-item-tool — Edit the text of an existing item in a Clippy room, identified by its item id (the `id` field returned by store-item / list-items).
  • delete-item-tool — Delete a single item from a Clippy room by its item id (the `id` returned by store-item / list-items).
  • clear-room-tool — Delete ALL items in a Clippy room (and their images).
  • set-room-password-tool — Lock or unlock a Clippy room.