@wenyan-md/mcp 1.0.5 → 1.0.6
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 +8 -2
- package/package.json +4 -3
package/README.md
CHANGED
|
@@ -1,15 +1,21 @@
|
|
|
1
|
+

|
|
2
|
+
|
|
1
3
|
# 文颜 MCP Server
|
|
2
4
|
|
|
3
|
-
](https://www.npmjs.com/package/@wenyan-md/mcp)
|
|
6
|
+
[](LICENSE)
|
|
7
|
+

|
|
8
|
+
[](https://github.com/caol64/wenyan-mcp)
|
|
4
9
|
|
|
5
10
|
「文颜」是一款多平台排版美化工具,让你将 Markdown 一键发布至微信公众号、知乎、今日头条等主流写作平台。
|
|
6
11
|
|
|
7
12
|
**文颜**现已推出多个版本:
|
|
8
13
|
|
|
9
14
|
* [macOS App Store 版](https://github.com/caol64/wenyan) - MAC 桌面应用
|
|
10
|
-
* [
|
|
15
|
+
* [跨平台版本](https://github.com/caol64/wenyan-pc) - Windows/Linux 跨平台桌面应用
|
|
11
16
|
* [CLI 版本](https://github.com/caol64/wenyan-cli) - CI/CD 或脚本自动化发布公众号文章
|
|
12
17
|
* [MCP 版本](https://github.com/caol64/wenyan-mcp) - 让 AI 自动发布公众号文章
|
|
18
|
+
* [嵌入版本](https://github.com/caol64/wenyan-core) - 将文颜的核心功能嵌入 Node 或者 Web 项目
|
|
13
19
|
|
|
14
20
|
文颜 MCP Server 是一个基于模型上下文协议(Model Context Protocol, MCP)的服务器组件,支持将 Markdown 格式的文章发布至微信公众号草稿箱,并使用与 [文颜](https://yuzhi.tech/wenyan) 相同的主题系统进行排版。
|
|
15
21
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@wenyan-md/mcp",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.6",
|
|
4
4
|
"description": "MCP server for Wenyan, a Markdown formatting tool that allows AI assistants to apply elegant built-in themes and publish articles directly to 微信公众号.",
|
|
5
5
|
"author": "Lei <caol64@gmail.com> (https://github.com/caol64)",
|
|
6
6
|
"license": "Apache-2.0",
|
|
@@ -31,7 +31,7 @@
|
|
|
31
31
|
},
|
|
32
32
|
"dependencies": {
|
|
33
33
|
"@modelcontextprotocol/sdk": "0.6.0",
|
|
34
|
-
"@wenyan-md/core": "^1.0.
|
|
34
|
+
"@wenyan-md/core": "^1.0.12"
|
|
35
35
|
},
|
|
36
36
|
"devDependencies": {
|
|
37
37
|
"@types/node": "^20.11.24",
|
|
@@ -42,6 +42,7 @@
|
|
|
42
42
|
"build": "tsc",
|
|
43
43
|
"watch": "tsc --watch",
|
|
44
44
|
"inspector": "pnpm build && node ./run-inspector.js",
|
|
45
|
-
"test": "pnpx vitest run"
|
|
45
|
+
"test": "pnpx vitest run",
|
|
46
|
+
"upgrade:core": "pnpm update @wenyan-md/core"
|
|
46
47
|
}
|
|
47
48
|
}
|