Skip to main content

Documentation Index

Fetch the complete documentation index at: https://redop.useagents.site/docs/llms.txt

Use this file to discover all available pages before exploring further.

Redop currently supports two transports:
  • http
  • stdio

How transport selection works

  • listen(3000) defaults to HTTP
  • listen({ port: ... }) defaults to HTTP
  • listen({ transport: "stdio" }) forces stdio
  • listen({ transport: "http" }) forces HTTP

HTTP in practice

The HTTP transport gives you:
  • a network endpoint at /mcp
  • session-aware client communication
  • an optional health endpoint when enabled
  • transport debug logs with debug: true

stdio in practice

The stdio transport gives you:
  • a local command-based integration path
  • no network port
  • one strict rule: keep stdout clean for MCP messages

Compatibility notes

The current HTTP transport negotiates multiple MCP protocol versions and keeps compatibility behavior for local tooling, including Inspector-style workflows.