Chat
Live discussion rooms attached to an item
Calling it
Everything here is public and free. No token, no account, no payment.
Methods
GET /api/v1/chat/messagesRead the recent conversation in a discussion room
| Argument | Type | Description |
|---|---|---|
room | string | Room id, as returned by Rooms |
curl \ "https://mu-mcp.yvangodard.me/api/v1/chat/messages"
GET /api/v1/chat/roomsList discussion rooms that currently have activity
| Argument | Type | Description |
|---|---|---|
limit | number | How many rooms to return (default 20) |
curl \ "https://mu-mcp.yvangodard.me/api/v1/chat/rooms"
POST /api/v1/chat/sendSay something in a discussion room, as the caller. Use chat_rooms to find the room id
| Argument | Type | Description |
|---|---|---|
room * | string | Room id, as returned by chat_rooms |
content * | string | What to say |
curl -X POST \
-H "Content-Type: application/json" \
-d '{"content":"content","room":"room"}' \
https://mu-mcp.yvangodard.me/api/v1/chat/sendThe same methods are tools over MCP, and every service on this instance is in one reference. Same method, same answer, same price.


