note-mcp-server 2.1.0 → 2.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/index.js +3 -3
- package/package.json +1 -1
package/index.js
CHANGED
|
@@ -76,7 +76,7 @@ const APP_NAME = firstEnv("app_name", "APP_NAME", "notes_app_name", "NOTES_APP_N
|
|
|
76
76
|
const server = new Server(
|
|
77
77
|
{
|
|
78
78
|
name: `note-mcp-server (${APP_NAME})`,
|
|
79
|
-
version: "2.
|
|
79
|
+
version: "2.2.0",
|
|
80
80
|
},
|
|
81
81
|
{
|
|
82
82
|
capabilities: {
|
|
@@ -147,7 +147,7 @@ server.setRequestHandler(ListToolsRequestSchema, async () => {
|
|
|
147
147
|
{
|
|
148
148
|
name: "create_note",
|
|
149
149
|
description:
|
|
150
|
-
|
|
150
|
+
`在 ${APP_NAME} 中新增筆記(POST:title、content)。內容請符合 AdminLTE 4 樣式,程式碼請標註語言並符合 PrismJS 格式。`,
|
|
151
151
|
inputSchema: {
|
|
152
152
|
type: "object",
|
|
153
153
|
properties: {
|
|
@@ -159,7 +159,7 @@ server.setRequestHandler(ListToolsRequestSchema, async () => {
|
|
|
159
159
|
},
|
|
160
160
|
{
|
|
161
161
|
name: "update_note",
|
|
162
|
-
description: `在 ${APP_NAME} 中修改筆記(POST:c_id、title、content
|
|
162
|
+
description: `在 ${APP_NAME} 中修改筆記(POST:c_id、title、content)。內容請符合 AdminLTE 4 樣式,亦支援以 append/prepend 追加內容。`,
|
|
163
163
|
inputSchema: {
|
|
164
164
|
type: "object",
|
|
165
165
|
properties: {
|
package/package.json
CHANGED