@claudeink/mcp-server 0.0.6 → 0.0.8
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/package.json +2 -4
- package/workflow/CLAUDE.md +7 -13
package/package.json
CHANGED
|
@@ -1,11 +1,9 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@claudeink/mcp-server",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.8",
|
|
4
4
|
"description": "ClaudeInk MCP Server - 自媒体多平台写作系统的本地 MCP 服务,连接 Claude 与云端后台",
|
|
5
5
|
"type": "module",
|
|
6
|
-
"bin":
|
|
7
|
-
"claudeink-mcp-server": "dist/cli.js"
|
|
8
|
-
},
|
|
6
|
+
"bin": "dist/cli.js",
|
|
9
7
|
"main": "./dist/index.js",
|
|
10
8
|
"exports": {
|
|
11
9
|
".": {
|
package/workflow/CLAUDE.md
CHANGED
|
@@ -212,21 +212,15 @@ curl -s -X POST https://app.claudeink.com/api/sync/batch \
|
|
|
212
212
|
- `/同步`:立即执行上述同步协议
|
|
213
213
|
- `/报告`:从云端拉取数据分析报告
|
|
214
214
|
|
|
215
|
-
###
|
|
215
|
+
### 同步时机
|
|
216
216
|
|
|
217
|
-
|
|
217
|
+
用户使用 `/同步` 手动触发。建议在以下时机执行:
|
|
218
|
+
- 新建或修改账号配置后
|
|
219
|
+
- 批量入库素材后
|
|
220
|
+
- 文章发布归档后
|
|
221
|
+
- 需要在 Dashboard 查看最新数据前
|
|
218
222
|
|
|
219
|
-
|
|
220
|
-
**执行频率**:每 4 小时
|
|
221
|
-
**任务内容**:
|
|
222
|
-
|
|
223
|
-
> 执行 /同步 指令,将本地素材、草稿、已发布文章的元数据同步到 ClaudeInk 云端。
|
|
224
|
-
> 读取 .claudeink/credentials.json 获取认证 token。
|
|
225
|
-
> 扫描 sources/、各账号 drafts/、published/ 目录。
|
|
226
|
-
> POST 到 https://app.claudeink.com/api/sync/batch。
|
|
227
|
-
> 同步完成后记录日志到 .claudeink/sync-log.md(追加一行:日期时间 + 同步数量)。
|
|
228
|
-
|
|
229
|
-
用户也可以随时使用 `/同步` 手动触发。
|
|
223
|
+
同步完成后记录日志到 `.claudeink/sync-log.md`(追加一行:日期时间 + 同步数量)。
|
|
230
224
|
|
|
231
225
|
## 指令速查
|
|
232
226
|
|