@falconer/mcp 0.1.6 → 0.1.7

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