@falconer/mcp 0.1.6 → 0.1.8
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 +25 -4
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -2,12 +2,21 @@
|
|
|
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.
|
|
5
|
+
## What's New in 0.1.8
|
|
6
6
|
|
|
7
|
-
- Matches the Falconer Public API `0.1.
|
|
7
|
+
- Matches the Falconer Public API `0.1.8` schema.
|
|
8
|
+
- Adds `reorder_folder_children` for full direct-child folder reordering.
|
|
9
|
+
- Forwards `parentDocumentId` for document create, move, and publish tools.
|
|
10
|
+
- Adds `unresolve_comment` for reopening resolved comment threads.
|
|
11
|
+
|
|
12
|
+
## What's New in 0.1.7
|
|
13
|
+
|
|
14
|
+
- Matches the Falconer Public API `0.1.7` schema.
|
|
15
|
+
- Adds targeted content replace/insert/delete tools.
|
|
16
|
+
- Adds comment list/reply/update/delete/resolve tools.
|
|
8
17
|
- Adds media upload support for images and videos.
|
|
9
18
|
- Adds navigation tools for children, trees, moves, and publishing docs.
|
|
10
|
-
- Adds folder read/delete tools.
|
|
19
|
+
- Adds folder create/read/update/delete tools.
|
|
11
20
|
- Adds document permission update tools.
|
|
12
21
|
|
|
13
22
|
Falconer documents use Markdown. Preserve Falconer-specific syntax exactly when editing:
|
|
@@ -58,12 +67,24 @@ claude mcp add falconer -- npx @falconer/mcp@latest
|
|
|
58
67
|
| `search` | Search documents by keyword or semantic query |
|
|
59
68
|
| `upload_media` | Upload a local image or video and return a ready-to-insert markdown/HTML snippet |
|
|
60
69
|
| `create` | Create a new document from markdown |
|
|
61
|
-
| `
|
|
70
|
+
| `replace_document_content` | Replace exact Markdown text in a document |
|
|
71
|
+
| `insert_document_content` | Insert Markdown content before/after an exact anchor, or at document start/end |
|
|
72
|
+
| `delete_document_content` | Delete exact Markdown text from a document |
|
|
73
|
+
| `edit` | Legacy find-and-replace edit on a document |
|
|
62
74
|
| `overwrite` | Replace a document's full markdown content. Whole-document rewrites can cause existing comments to lose the text they reference. |
|
|
63
75
|
| `delete` | Delete a document by archiving it |
|
|
76
|
+
| `list_comments` | List document comment threads |
|
|
77
|
+
| `reply_to_comment` | Reply to a document comment |
|
|
78
|
+
| `update_comment` | Update a document comment or reply |
|
|
79
|
+
| `delete_comment` | Delete a document comment or reply |
|
|
80
|
+
| `resolve_comment` | Resolve a document comment thread |
|
|
81
|
+
| `unresolve_comment` | Unresolve a document comment thread |
|
|
64
82
|
| `list_nav_children` | List visible child folders and documents for a nav location |
|
|
65
83
|
| `get_nav_tree` | Get a visible navigation tree |
|
|
66
84
|
| `get_folder` | Get folder metadata and visible one-level children |
|
|
85
|
+
| `create_folder` | Create a folder |
|
|
86
|
+
| `update_folder` | Update folder metadata |
|
|
87
|
+
| `reorder_folder_children` | Set the full direct-child order for a folder |
|
|
67
88
|
| `move_nav_item` | Move a folder or document nav item |
|
|
68
89
|
| `move_document` | Move a document nav placement by document ID |
|
|
69
90
|
| `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.8",
|
|
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.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"
|
|
16
16
|
}
|
|
17
17
|
}
|