quoroom 0.1.25 → 0.1.27
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +6 -0
- package/out/mcp/api-server.js +737 -326
- package/out/mcp/cli.js +920 -436
- package/out/mcp/server.js +79 -31
- package/package.json +9 -2
package/README.md
CHANGED
|
@@ -187,6 +187,10 @@ brew install quoroom-ai/quoroom/quoroom
|
|
|
187
187
|
|
|
188
188
|
Download from [GitHub Releases](https://github.com/quoroom-ai/room/releases). Installers add `quoroom` to your PATH automatically. No dependencies needed.
|
|
189
189
|
|
|
190
|
+
Installer launchers:
|
|
191
|
+
- macOS `.pkg`: open `/Applications/Quoroom Server.app`
|
|
192
|
+
- Windows `.exe`: Start Menu -> Quoroom Server -> Open Quoroom Server
|
|
193
|
+
|
|
190
194
|
| Platform | Installer | Archive |
|
|
191
195
|
|----------|-----------|---------|
|
|
192
196
|
| macOS (Apple Silicon + Intel) | `.pkg` | `.tar.gz` |
|
|
@@ -210,6 +214,8 @@ Removes Quoroom binaries, all data, and logs. Prompts for confirmation before pr
|
|
|
210
214
|
quoroom serve
|
|
211
215
|
```
|
|
212
216
|
|
|
217
|
+
If you installed with the macOS `.pkg` or Windows `.exe` installer, you can also use the launcher app/shortcut instead of command line.
|
|
218
|
+
|
|
213
219
|
On first run, `quoroom serve` automatically registers the Quoroom MCP server in every AI coding tool you have installed (Claude Code, Claude Desktop, Cursor, Windsurf). Just **restart your AI client once** — after that, all `mcp__quoroom__*` tools are available automatically in every session.
|
|
214
220
|
|
|
215
221
|
Open **http://localhost:3700** (or the port shown in your terminal). The dashboard and API run locally, and your room data stays on your machine by default.
|