@de-otio/epimethian-mcp 5.0.0 → 5.1.1
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 +17 -1
- package/dist/cli/index.js +430 -38
- package/dist/cli/index.js.map +4 -4
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -134,10 +134,26 @@ Confluence pages are verbose — storage format HTML with macro markup can easil
|
|
|
134
134
|
| `set_page_status` | Set the content status badge on a page |
|
|
135
135
|
| `remove_page_status` | Remove the content status badge from a page |
|
|
136
136
|
| `get_page_versions` | List version history for a page |
|
|
137
|
-
| `get_page_version` | Get page content at a specific historical version |
|
|
137
|
+
| `get_page_version` | Get page content at a specific historical version (read-only markdown) |
|
|
138
138
|
| `diff_page_versions` | Compare two versions of a page |
|
|
139
|
+
| `prepend_to_page` | Insert content at the beginning of a page (additive, safe) |
|
|
140
|
+
| `append_to_page` | Insert content at the end of a page (additive, safe) |
|
|
141
|
+
| `revert_page` | Revert a page to a previous version (lossless) |
|
|
142
|
+
| `lookup_user` | Search for Atlassian users by name or email |
|
|
143
|
+
| `resolve_page_link` | Resolve a page title + space key to a stable page ID and URL |
|
|
139
144
|
| `get_version` | Return the server version |
|
|
140
145
|
|
|
146
|
+
## Content Safety
|
|
147
|
+
|
|
148
|
+
Write operations are protected by layered safety guards to prevent accidental content loss:
|
|
149
|
+
|
|
150
|
+
- **Shrinkage guard** — `update_page` rejects writes that reduce the body by more than 50%. Pass `confirm_shrinkage: true` to override.
|
|
151
|
+
- **Structural integrity** — rejects writes that drop more than 50% of headings. Pass `confirm_structure_loss: true` to override.
|
|
152
|
+
- **Empty-body rejection** — hard guard, no opt-out. Rejects writes that produce near-empty pages.
|
|
153
|
+
- **Additive tools** — `prepend_to_page` and `append_to_page` avoid full-body replacement entirely.
|
|
154
|
+
- **Lossless revert** — `revert_page` uses raw storage format, avoiding lossy markdown conversion.
|
|
155
|
+
- **Mutation log** — opt-in via `EPIMETHIAN_MUTATION_LOG=true`. Writes JSONL records to `~/.epimethian/logs/` for every write operation.
|
|
156
|
+
|
|
141
157
|
## Credential Security
|
|
142
158
|
|
|
143
159
|
- Credentials are stored per-profile in the OS keychain (macOS Keychain / Linux libsecret)
|