@falconer/mcp 0.1.8 → 0.1.10

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 +16 -0
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -2,6 +2,16 @@
2
2
 
3
3
  MCP server for reading, searching, and updating [Falconer](https://falconer.com) documents from MCP clients.
4
4
 
5
+ ## What's New in 0.1.10
6
+
7
+ - Matches the Falconer Public API `0.1.10` schema.
8
+ - Adds `create_comment` for creating anchored document comments.
9
+
10
+ ## What's New in 0.1.9
11
+
12
+ - Matches the Falconer Public API `0.1.9` schema.
13
+ - Adds document revision tools for listing, reading, creating, restoring, and deleting revisions.
14
+
5
15
  ## What's New in 0.1.8
6
16
 
7
17
  - Matches the Falconer Public API `0.1.8` schema.
@@ -73,7 +83,13 @@ claude mcp add falconer -- npx @falconer/mcp@latest
73
83
  | `edit` | Legacy find-and-replace edit on a document |
74
84
  | `overwrite` | Replace a document's full markdown content. Whole-document rewrites can cause existing comments to lose the text they reference. |
75
85
  | `delete` | Delete a document by archiving it |
86
+ | `list_document_revisions` | List revision metadata for a document |
87
+ | `read_document_revision` | Read the Markdown content for a document revision |
88
+ | `create_document_revision` | Create a revision of the current document content |
89
+ | `restore_document_revision` | Restore a document to a revision |
90
+ | `delete_document_revision` | Delete a single document revision |
76
91
  | `list_comments` | List document comment threads |
92
+ | `create_comment` | Create a new anchored document comment |
77
93
  | `reply_to_comment` | Reply to a document comment |
78
94
  | `update_comment` | Update a document comment or reply |
79
95
  | `delete_comment` | Delete a document comment or reply |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@falconer/mcp",
3
- "version": "0.1.8",
3
+ "version": "0.1.10",
4
4
  "description": "Falconer MCP Server - access and update Falconer documents",
5
5
  "homepage": "https://falconer.com",
6
6
  "license": "Apache-2.0",
@@ -8,10 +8,10 @@
8
8
  "falconer-mcp": "bin/falconer-mcp"
9
9
  },
10
10
  "optionalDependencies": {
11
- "@falconer/mcp-darwin-arm64": "0.1.8",
12
- "@falconer/mcp-darwin-x64": "0.1.8",
13
- "@falconer/mcp-linux-x64": "0.1.8",
14
- "@falconer/mcp-linux-arm64": "0.1.8",
15
- "@falconer/mcp-windows-x64": "0.1.8"
11
+ "@falconer/mcp-darwin-arm64": "0.1.10",
12
+ "@falconer/mcp-darwin-x64": "0.1.10",
13
+ "@falconer/mcp-linux-x64": "0.1.10",
14
+ "@falconer/mcp-linux-arm64": "0.1.10",
15
+ "@falconer/mcp-windows-x64": "0.1.10"
16
16
  }
17
17
  }