@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.
- package/README.md +6 -5
- 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 |
|
|
41
|
-
|
|
42
|
-
| `read` |
|
|
43
|
-
| `search` |
|
|
44
|
-
| `create` |
|
|
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.
|
|
3
|
+
"version": "0.1.3",
|
|
4
4
|
"description": "Falconer MCP Server - access your Falconer documents from Claude",
|
|
5
|
-
"
|
|
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.
|
|
15
|
-
"@falconer/mcp-darwin-x64": "0.1.
|
|
16
|
-
"@falconer/mcp-linux-x64": "0.1.
|
|
17
|
-
"@falconer/mcp-linux-arm64": "0.1.
|
|
18
|
-
"@falconer/mcp-windows-x64": "0.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
|
}
|