@agiletortoise/drafts-mcp-server 1.0.0 → 1.0.1

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.
Files changed (2) hide show
  1. package/README.md +6 -3
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -2,6 +2,8 @@
2
2
 
3
3
  A [Model Context Protocol](https://modelcontextprotocol.io) (MCP) server that enables AI assistants to interact with the [Drafts](https://getdrafts.com) app on macOS through AppleScript.
4
4
 
5
+ For additional discussion of uses, see [the Drafts forum](https://forums.getdrafts.com/t/drafts-mcp-server-for-ai-integration/16507)
6
+
5
7
  ## Features
6
8
 
7
9
  - 📝 **Draft Management**: Create, read, update, and search drafts
@@ -161,12 +163,13 @@ List all workspaces in Drafts.
161
163
  ### Draft Operations
162
164
 
163
165
  #### `drafts_get_drafts`
164
- Get drafts from a specific workspace with optional filtering.
166
+ Get drafts with flexible filtering by content, folder, tag, flagged status, and dates.
165
167
 
166
168
  ```typescript
167
169
  {
168
- workspaceName: string; // Required: Name of the workspace
169
- query?: string; // Optional: Query string to filter drafts
170
+ query?: string; // Optional: Query string to filter drafts
171
+ folder?: inbox, archive, trash // Optional: Limit to one folder
172
+ tag: string // Optional: Limit by assigned tag
170
173
  }
171
174
  ```
172
175
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@agiletortoise/drafts-mcp-server",
3
- "version": "1.0.0",
3
+ "version": "1.0.1",
4
4
  "description": "Model Context Protocol server for Drafts app on macOS",
5
5
  "type": "module",
6
6
  "main": "dist/index.js",