Docs
Integrating your own MCP client
If your internal tool or agent platform already supports MCP, connect RedMate as a local HTTP MCP server. Your client only needs to call tools/list and tools/call, then handle structured JSON success, failure, and retry results.
Client implementation notes
- Transport
- Use the HTTP MCP endpoint: http://127.0.0.1:7654/mcp. During development, prefer the endpoint shown in the app.
- Tool discovery
- Call list-tools first to inspect xhs_* tools, descriptions, input schemas, and read / destructive annotations.
- Error handling
- Failed tools return structured error codes. Distinguish validation, account required, and publish status unknown instead of retrying blindly.
- Human review
- Add confirmation for destructive tools, especially publish, delete, cancel task, and bulk project assignment changes.