@falconer/mcp 0.1.9 → 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.
- package/README.md +6 -0
- package/package.json +6 -6
package/README.md
CHANGED
|
@@ -2,6 +2,11 @@
|
|
|
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
|
+
|
|
5
10
|
## What's New in 0.1.9
|
|
6
11
|
|
|
7
12
|
- Matches the Falconer Public API `0.1.9` schema.
|
|
@@ -84,6 +89,7 @@ claude mcp add falconer -- npx @falconer/mcp@latest
|
|
|
84
89
|
| `restore_document_revision` | Restore a document to a revision |
|
|
85
90
|
| `delete_document_revision` | Delete a single document revision |
|
|
86
91
|
| `list_comments` | List document comment threads |
|
|
92
|
+
| `create_comment` | Create a new anchored document comment |
|
|
87
93
|
| `reply_to_comment` | Reply to a document comment |
|
|
88
94
|
| `update_comment` | Update a document comment or reply |
|
|
89
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.
|
|
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.
|
|
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.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
|
}
|