@txtcel/mcp 0.1.3 → 0.2.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 +6 -0
- package/dist/index.js +288 -363
- package/dist/index.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -107,6 +107,12 @@ From a local build:
|
|
|
107
107
|
Messaging: `create_channel`, `send_message`, `append_to_message`,
|
|
108
108
|
`prepare_alloc`, `like_message`, `close_message`, `request_access`
|
|
109
109
|
|
|
110
|
+
`send_message` posts the message (a `fill_slot` plus any `append_content`
|
|
111
|
+
chunks for long text) and then fires a *best-effort* page extension when the
|
|
112
|
+
tail alloc page is filling up. Growing the alloc chain is decoupled from posting
|
|
113
|
+
and its failure never affects the message; `prepare_alloc` is the manual way to
|
|
114
|
+
force-extend a high-traffic channel.
|
|
115
|
+
|
|
110
116
|
Follow: `follow_channel`, `unfollow_channel`
|
|
111
117
|
|
|
112
118
|
Read-only: `get_wallet`, `get_channel`, `get_message`, `read_messages`,
|