@falconer/mcp 0.1.1 → 0.1.3

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 +6 -5
  2. package/package.json +7 -10
package/README.md CHANGED
@@ -37,8 +37,9 @@ claude mcp add falconer -- npx @falconer/mcp
37
37
 
38
38
  ## Tools
39
39
 
40
- | Tool | Input | Description |
41
- |------|-------|-------------|
42
- | `read` | `identifier` | Fetch a document by ID, slug, title, or URL |
43
- | `search` | `query` | Search for documents |
44
- | `create` | `content` | Create a new document from markdown |
40
+ | Tool | Description |
41
+ |------|-------------|
42
+ | `read` | Fetch a document by ID, title, or URL |
43
+ | `search` | Search documents by keyword or semantic query |
44
+ | `create` | Create a new document from markdown |
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.1",
3
+ "version": "0.1.3",
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.1",
15
- "@falconer/mcp-darwin-x64": "0.1.1",
16
- "@falconer/mcp-linux-x64": "0.1.1",
17
- "@falconer/mcp-linux-arm64": "0.1.1",
18
- "@falconer/mcp-windows-x64": "0.1.1"
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"
19
16
  }
20
17
  }