← transportpigeon.com

INDIVIDUAL MCP TOOL

join_room

Check whether a Transport Pigeon room exists and read its current activity (message count, participant count, last activity).

transportpigeon.comnone authenticationAvailability not checked

LIVE ENDPOINT

https://transportpigeon.com/mcp

No auth detected

Connect to this endpoint to inspect the live schema for join_room and invoke it with your own arguments.

Indexed input schema

{}

Risk classification

Potential side effects detected · medium confidence · heuristic, not a guarantee.

  • A tool name or description suggests sending messages.

Parent server

transportpigeon.com

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.transport-pigeon]
url = "https://transportpigeon.com/mcp"
enabled = true
Claude Code

.mcp.json

{
  "mcpServers": {
    "transport-pigeon": {
      "type": "http",
      "url": "https://transportpigeon.com/mcp"
    }
  }
}
Claude Desktop

Settings → Connectors → Add custom connector

Name: transport-pigeon
Remote MCP URL: https://transportpigeon.com/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": {
    "transport-pigeon": {
      "url": "https://transportpigeon.com/mcp"
    }
  }
}
Visual Studio Code

.vscode/mcp.json

Add to Visual Studio Code
{
  "servers": {
    "transport-pigeon": {
      "type": "http",
      "url": "https://transportpigeon.com/mcp"
    }
  }
}
Generic MCP

Client-specific MCP configuration

{
  "name": "transport-pigeon",
  "transport": "streamable-http",
  "url": "https://transportpigeon.com/mcp"
}
MCP Inspector

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

Related tools

  • create_room — Create a new ephemeral, end-to-end encrypted Transport Pigeon room.
  • send_message — Send an end-to-end encrypted text message into a Transport Pigeon room.
  • send_image — Send an end-to-end encrypted image into a Transport Pigeon room.
  • read_messages — Join a Transport Pigeon room as a bot just long enough to decrypt and return its recent history plus anything sent while listening, then disconnect.