@falconer/mcp 0.1.3 → 0.1.5

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 +5 -3
  2. package/package.json +6 -6
package/README.md CHANGED
@@ -8,14 +8,14 @@ MCP server for [Falconer](https://falconer.com).
8
8
 
9
9
  ```bash
10
10
  npm install -g @falconer/cli
11
- falconer login
11
+ falconer oauth login
12
12
  ```
13
13
 
14
14
  ### 2. Add MCP server
15
15
 
16
16
  **Claude Code**:
17
17
  ```bash
18
- claude mcp add falconer -- npx @falconer/mcp
18
+ claude mcp add falconer -- npx @falconer/mcp@latest
19
19
  ```
20
20
 
21
21
  **Cursor** — add to `~/.cursor/mcp.json`:
@@ -24,7 +24,7 @@ claude mcp add falconer -- npx @falconer/mcp
24
24
  "mcpServers": {
25
25
  "falconer": {
26
26
  "command": "npx",
27
- "args": ["@falconer/mcp"]
27
+ "args": ["@falconer/mcp@latest"]
28
28
  }
29
29
  }
30
30
  }
@@ -43,3 +43,5 @@ claude mcp add falconer -- npx @falconer/mcp
43
43
  | `search` | Search documents by keyword or semantic query |
44
44
  | `create` | Create a new document from markdown |
45
45
  | `edit` | Find-and-replace edit on a document |
46
+ | `overwrite` | Replace a document's full markdown content |
47
+ | `delete` | Delete a document by archiving it |
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@falconer/mcp",
3
- "version": "0.1.3",
3
+ "version": "0.1.5",
4
4
  "description": "Falconer MCP Server - access your Falconer documents from Claude",
5
5
  "homepage": "https://falconer.com",
6
6
  "license": "MIT",
@@ -8,10 +8,10 @@
8
8
  "falconer-mcp": "bin/falconer-mcp"
9
9
  },
10
10
  "optionalDependencies": {
11
- "@falconer/mcp-darwin-arm64": "0.1.3",
12
- "@falconer/mcp-darwin-x64": "0.1.3",
13
- "@falconer/mcp-linux-x64": "0.1.3",
14
- "@falconer/mcp-linux-arm64": "0.1.3",
15
- "@falconer/mcp-windows-x64": "0.1.3"
11
+ "@falconer/mcp-darwin-arm64": "0.1.5",
12
+ "@falconer/mcp-darwin-x64": "0.1.5",
13
+ "@falconer/mcp-linux-x64": "0.1.5",
14
+ "@falconer/mcp-linux-arm64": "0.1.5",
15
+ "@falconer/mcp-windows-x64": "0.1.5"
16
16
  }
17
17
  }