mq_logout
Disconnect from the Agent-MQ message queue server to end communication sessions between AI coding agents.
Instructions
Disconnect from server
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- mcp/src/index.ts:65-68 (handler)The handler implementation for the 'mq_logout' tool. It clears the server and token from the configuration.
server.tool("mq_logout", "Disconnect from server", {}, async () => { client.saveConfig({ server: "", token: "" }); return { content: [{ type: "text", text: JSON.stringify({ status: "ok" }) }] }; });