Chat

Live discussion rooms attached to an item

Open Chat →

Calling it

Everything here is public and free. No token, no account, no payment.

How every call behaves →

Methods

GET /api/v1/chat/messages

Read the recent conversation in a discussion room

ArgumentTypeDescription
roomstringRoom id, as returned by Rooms
curl \
  "https://mu-mcp.yvangodard.me/api/v1/chat/messages"
GET /api/v1/chat/rooms

List discussion rooms that currently have activity

ArgumentTypeDescription
limitnumberHow many rooms to return (default 20)
curl \
  "https://mu-mcp.yvangodard.me/api/v1/chat/rooms"
POST /api/v1/chat/send

Say something in a discussion room, as the caller. Use chat_rooms to find the room id

Changes something, so POST only.

ArgumentTypeDescription
room *stringRoom id, as returned by chat_rooms
content *stringWhat to say
curl -X POST \
  -H "Content-Type: application/json" \
  -d '{"content":"content","room":"room"}' \
  https://mu-mcp.yvangodard.me/api/v1/chat/send

The same methods are tools over MCP, and every service on this instance is in one reference. Same method, same answer, same price.