@falconer/mcp 0.1.2 → 0.1.4

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 +3 -3
  2. package/package.json +7 -10
package/README.md CHANGED
@@ -15,7 +15,7 @@ falconer login
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
  }
@@ -39,7 +39,7 @@ claude mcp add falconer -- npx @falconer/mcp
39
39
 
40
40
  | Tool | Description |
41
41
  |------|-------------|
42
- | `read` | Fetch a document by ID, slug, title, or URL |
42
+ | `read` | Fetch a document by ID, title, or URL |
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 |
package/package.json CHANGED
@@ -1,20 +1,17 @@
1
1
  {
2
2
  "name": "@falconer/mcp",
3
- "version": "0.1.2",
3
+ "version": "0.1.4",
4
4
  "description": "Falconer MCP Server - access your Falconer documents from Claude",
5
- "repository": {
6
- "type": "git",
7
- "url": "git+https://github.com/FalconerAI/falconer.git"
8
- },
5
+ "homepage": "https://falconer.com",
9
6
  "license": "MIT",
10
7
  "bin": {
11
8
  "falconer-mcp": "bin/falconer-mcp"
12
9
  },
13
10
  "optionalDependencies": {
14
- "@falconer/mcp-darwin-arm64": "0.1.2",
15
- "@falconer/mcp-darwin-x64": "0.1.2",
16
- "@falconer/mcp-linux-x64": "0.1.2",
17
- "@falconer/mcp-linux-arm64": "0.1.2",
18
- "@falconer/mcp-windows-x64": "0.1.2"
11
+ "@falconer/mcp-darwin-arm64": "0.1.4",
12
+ "@falconer/mcp-darwin-x64": "0.1.4",
13
+ "@falconer/mcp-linux-x64": "0.1.4",
14
+ "@falconer/mcp-linux-arm64": "0.1.4",
15
+ "@falconer/mcp-windows-x64": "0.1.4"
19
16
  }
20
17
  }