circal-mcp 0.3.0 → 0.4.0
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 +10 -0
- package/dist/circal-mcp.mjs +774 -153
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -110,6 +110,16 @@ No mirror file yet: on the Mac app there is almost always one already (`--find`
|
|
|
110
110
|
it); in a browser, turn the mirror on from circal's Settings panel, then run `--find` again. Run
|
|
111
111
|
`npx -y circal-mcp --help` for the full flag and environment variable list.
|
|
112
112
|
|
|
113
|
+
### Pinning a calendar
|
|
114
|
+
|
|
115
|
+
`--calendar <c>` (or `CIRCAL_CALENDAR`), beside either transport, pins the
|
|
116
|
+
connection's default calendar — an id or a unique name prefix. Every write
|
|
117
|
+
that names no `calendarId` lands there instead of on the user's default,
|
|
118
|
+
which is how an agent working one calendar stays on it. A create that was
|
|
119
|
+
neither named nor pinned says so in its own summary
|
|
120
|
+
(`calendar defaulted, not named`), so a wrong-calendar write is loud rather
|
|
121
|
+
than discovered by whoever gets the reminder.
|
|
122
|
+
|
|
113
123
|
## From source (contributors)
|
|
114
124
|
|
|
115
125
|
Building from a checkout instead of the published package:
|