@falconer/mcp 0.1.7 → 0.1.9
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 +19 -0
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -2,6 +2,18 @@
|
|
|
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.9
|
|
6
|
+
|
|
7
|
+
- Matches the Falconer Public API `0.1.9` schema.
|
|
8
|
+
- Adds document revision tools for listing, reading, creating, restoring, and deleting revisions.
|
|
9
|
+
|
|
10
|
+
## What's New in 0.1.8
|
|
11
|
+
|
|
12
|
+
- Matches the Falconer Public API `0.1.8` schema.
|
|
13
|
+
- Adds `reorder_folder_children` for full direct-child folder reordering.
|
|
14
|
+
- Forwards `parentDocumentId` for document create, move, and publish tools.
|
|
15
|
+
- Adds `unresolve_comment` for reopening resolved comment threads.
|
|
16
|
+
|
|
5
17
|
## What's New in 0.1.7
|
|
6
18
|
|
|
7
19
|
- Matches the Falconer Public API `0.1.7` schema.
|
|
@@ -66,16 +78,23 @@ claude mcp add falconer -- npx @falconer/mcp@latest
|
|
|
66
78
|
| `edit` | Legacy find-and-replace edit on a document |
|
|
67
79
|
| `overwrite` | Replace a document's full markdown content. Whole-document rewrites can cause existing comments to lose the text they reference. |
|
|
68
80
|
| `delete` | Delete a document by archiving it |
|
|
81
|
+
| `list_document_revisions` | List revision metadata for a document |
|
|
82
|
+
| `read_document_revision` | Read the Markdown content for a document revision |
|
|
83
|
+
| `create_document_revision` | Create a revision of the current document content |
|
|
84
|
+
| `restore_document_revision` | Restore a document to a revision |
|
|
85
|
+
| `delete_document_revision` | Delete a single document revision |
|
|
69
86
|
| `list_comments` | List document comment threads |
|
|
70
87
|
| `reply_to_comment` | Reply to a document comment |
|
|
71
88
|
| `update_comment` | Update a document comment or reply |
|
|
72
89
|
| `delete_comment` | Delete a document comment or reply |
|
|
73
90
|
| `resolve_comment` | Resolve a document comment thread |
|
|
91
|
+
| `unresolve_comment` | Unresolve a document comment thread |
|
|
74
92
|
| `list_nav_children` | List visible child folders and documents for a nav location |
|
|
75
93
|
| `get_nav_tree` | Get a visible navigation tree |
|
|
76
94
|
| `get_folder` | Get folder metadata and visible one-level children |
|
|
77
95
|
| `create_folder` | Create a folder |
|
|
78
96
|
| `update_folder` | Update folder metadata |
|
|
97
|
+
| `reorder_folder_children` | Set the full direct-child order for a folder |
|
|
79
98
|
| `move_nav_item` | Move a folder or document nav item |
|
|
80
99
|
| `move_document` | Move a document nav placement by document ID |
|
|
81
100
|
| `publish_document` | Publish a private document into company navigation |
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@falconer/mcp",
|
|
3
|
-
"version": "0.1.
|
|
3
|
+
"version": "0.1.9",
|
|
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.
|
|
12
|
-
"@falconer/mcp-darwin-x64": "0.1.
|
|
13
|
-
"@falconer/mcp-linux-x64": "0.1.
|
|
14
|
-
"@falconer/mcp-linux-arm64": "0.1.
|
|
15
|
-
"@falconer/mcp-windows-x64": "0.1.
|
|
11
|
+
"@falconer/mcp-darwin-arm64": "0.1.9",
|
|
12
|
+
"@falconer/mcp-darwin-x64": "0.1.9",
|
|
13
|
+
"@falconer/mcp-linux-x64": "0.1.9",
|
|
14
|
+
"@falconer/mcp-linux-arm64": "0.1.9",
|
|
15
|
+
"@falconer/mcp-windows-x64": "0.1.9"
|
|
16
16
|
}
|
|
17
17
|
}
|