dingtalk-wiki 1.1.2 → 1.1.3
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 +0 -4
- package/README.zh-CN.md +0 -4
- package/docs/clients/mcporter.md +0 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -223,7 +223,6 @@ When a new project starts, automation can create a standard folder tree such as:
|
|
|
223
223
|
If you have registered this server in your MCP client config under the name `dingtalk-wiki`:
|
|
224
224
|
|
|
225
225
|
```bash
|
|
226
|
-
mcporter call dingtalk-wiki.show_config
|
|
227
226
|
mcporter call dingtalk-wiki.list_wiki_workspaces
|
|
228
227
|
mcporter call dingtalk-wiki.list_wiki_nodes workspace_id="your_workspace_id"
|
|
229
228
|
mcporter call dingtalk-wiki.create_wiki_doc workspace_id="your_workspace_id" name="Weekly Summary" doc_type="DOC"
|
|
@@ -235,7 +234,6 @@ mcporter call dingtalk-wiki.get_user_info userid="your_user_id"
|
|
|
235
234
|
If you want to run the server directly without pre-registering it, call the tool names directly:
|
|
236
235
|
|
|
237
236
|
```bash
|
|
238
|
-
mcporter call --stdio "node ./index.js" show_config
|
|
239
237
|
mcporter call --stdio "node ./index.js" list_wiki_workspaces
|
|
240
238
|
mcporter call --stdio "node ./index.js" list_wiki_nodes workspace_id="your_workspace_id"
|
|
241
239
|
mcporter call --stdio "node ./index.js" create_wiki_doc workspace_id="your_workspace_id" name="Weekly Summary" doc_type="DOC"
|
|
@@ -245,8 +243,6 @@ mcporter call --stdio "node ./index.js" create_wiki_doc workspace_id="your_works
|
|
|
245
243
|
|
|
246
244
|
## Available MCP tools
|
|
247
245
|
|
|
248
|
-
- `set_operator`
|
|
249
|
-
- `show_config`
|
|
250
246
|
- `list_wiki_workspaces`
|
|
251
247
|
- `get_wiki_workspace`
|
|
252
248
|
- `list_wiki_nodes`
|
package/README.zh-CN.md
CHANGED
|
@@ -216,7 +216,6 @@ node index.js
|
|
|
216
216
|
如果你已经在 MCP client 里把这个 server 注册为 `dingtalk-wiki`:
|
|
217
217
|
|
|
218
218
|
```bash
|
|
219
|
-
mcporter call dingtalk-wiki.show_config
|
|
220
219
|
mcporter call dingtalk-wiki.list_wiki_workspaces
|
|
221
220
|
mcporter call dingtalk-wiki.list_wiki_nodes workspace_id="your_workspace_id"
|
|
222
221
|
mcporter call dingtalk-wiki.create_wiki_doc workspace_id="your_workspace_id" name="Weekly Summary" doc_type="DOC"
|
|
@@ -228,7 +227,6 @@ mcporter call dingtalk-wiki.get_user_info userid="your_user_id"
|
|
|
228
227
|
如果你不想预先注册 server,而是直接拉起它,那么工具名直接写裸工具名:
|
|
229
228
|
|
|
230
229
|
```bash
|
|
231
|
-
mcporter call --stdio "node ./index.js" show_config
|
|
232
230
|
mcporter call --stdio "node ./index.js" list_wiki_workspaces
|
|
233
231
|
mcporter call --stdio "node ./index.js" list_wiki_nodes workspace_id="your_workspace_id"
|
|
234
232
|
mcporter call --stdio "node ./index.js" create_wiki_doc workspace_id="your_workspace_id" name="Weekly Summary" doc_type="DOC"
|
|
@@ -238,8 +236,6 @@ mcporter call --stdio "node ./index.js" create_wiki_doc workspace_id="your_works
|
|
|
238
236
|
|
|
239
237
|
## 可用 MCP 工具
|
|
240
238
|
|
|
241
|
-
- `set_operator`
|
|
242
|
-
- `show_config`
|
|
243
239
|
- `list_wiki_workspaces`
|
|
244
240
|
- `get_wiki_workspace`
|
|
245
241
|
- `list_wiki_nodes`
|
package/docs/clients/mcporter.md
CHANGED
|
@@ -5,7 +5,6 @@
|
|
|
5
5
|
Use the server directly over stdio. In this mode, call the tool names directly:
|
|
6
6
|
|
|
7
7
|
```bash
|
|
8
|
-
mcporter call --stdio "node /absolute/path/to/dingtalk-wiki-mcp/index.js" show_config
|
|
9
8
|
mcporter call --stdio "node /absolute/path/to/dingtalk-wiki-mcp/index.js" list_wiki_workspaces
|
|
10
9
|
mcporter call --stdio "node /absolute/path/to/dingtalk-wiki-mcp/index.js" create_wiki_doc workspace_id="your_workspace_id" name="Weekly Summary"
|
|
11
10
|
```
|
|
@@ -15,7 +14,6 @@ mcporter call --stdio "node /absolute/path/to/dingtalk-wiki-mcp/index.js" create
|
|
|
15
14
|
If you registered the server under the name `dingtalk-wiki`, then use namespaced calls:
|
|
16
15
|
|
|
17
16
|
```bash
|
|
18
|
-
mcporter call dingtalk-wiki.show_config
|
|
19
17
|
mcporter call dingtalk-wiki.list_wiki_workspaces
|
|
20
18
|
mcporter call dingtalk-wiki.create_wiki_doc workspace_id="your_workspace_id" name="Weekly Summary"
|
|
21
19
|
```
|