@finchagentic/mcp 4.6.3 → 4.6.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.
- package/README.md +4 -4
- package/dist/convex.js +1 -1
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -37,13 +37,13 @@ Always pin the version. Never use `@latest`.
|
|
|
37
37
|
|
|
38
38
|
```bash
|
|
39
39
|
# One-command installer (detects common MCP clients)
|
|
40
|
-
npx -y
|
|
40
|
+
npx -y @finchagentic/mcp@4.6.5 finch install
|
|
41
41
|
```
|
|
42
42
|
|
|
43
43
|
### Claude Code
|
|
44
44
|
|
|
45
45
|
```bash
|
|
46
|
-
claude mcp add finch -s user -- npx -y
|
|
46
|
+
claude mcp add finch -s user -- npx -y @finchagentic/mcp@4.6.5
|
|
47
47
|
```
|
|
48
48
|
|
|
49
49
|
### Cursor / Windsurf / Claude Desktop
|
|
@@ -62,7 +62,7 @@ claude mcp add finch -s user -- npx -y -p @finchagentic/mcp@4.6.2 finch-mcp
|
|
|
62
62
|
### Hermes
|
|
63
63
|
|
|
64
64
|
```bash
|
|
65
|
-
hermes mcp add finch -- npx -y
|
|
65
|
+
hermes mcp add finch -- npx -y @finchagentic/mcp@4.6.5
|
|
66
66
|
```
|
|
67
67
|
|
|
68
68
|
<details>
|
|
@@ -122,7 +122,7 @@ Default palette is `core` (lighter context). Full set:
|
|
|
122
122
|
Finch is the runtime. **Your LLM is the brain. Your data stays yours.**
|
|
123
123
|
|
|
124
124
|
```bash
|
|
125
|
-
npx -y
|
|
125
|
+
npx -y @finchagentic/mcp@4.6.5 finch setup
|
|
126
126
|
```
|
|
127
127
|
|
|
128
128
|
| Piece | Location |
|
package/dist/convex.js
CHANGED
|
@@ -6,7 +6,7 @@ exports.callConvex = callConvex;
|
|
|
6
6
|
exports.callConvexRaw = callConvexRaw;
|
|
7
7
|
const wallet_js_1 = require("./wallet.js");
|
|
8
8
|
const config_js_1 = require("./config.js");
|
|
9
|
-
exports.CONVEX_SITE = process.env.FINCH_CONVEX_URL ?? "https://
|
|
9
|
+
exports.CONVEX_SITE = process.env.FINCH_CONVEX_URL ?? "https://valuable-fish-533.convex.site";
|
|
10
10
|
const RETRY_STATUSES = new Set([429, 500, 502, 503, 504]);
|
|
11
11
|
const RETRY_DELAYS = [500, 1000, 2000];
|
|
12
12
|
class PaymentRequiredError extends Error {
|
package/package.json
CHANGED
|
@@ -1,11 +1,12 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@finchagentic/mcp",
|
|
3
|
-
"version": "4.6.
|
|
3
|
+
"version": "4.6.5",
|
|
4
4
|
"description": "The runtime layer for Agentic AI. Persistent memory, autonomous agents, and workflows that survive every session.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"bin": {
|
|
7
7
|
"finch": "dist/cli.js",
|
|
8
|
-
"finch-mcp": "dist/index.js"
|
|
8
|
+
"finch-mcp": "dist/index.js",
|
|
9
|
+
"@finchagentic/mcp": "dist/index.js"
|
|
9
10
|
},
|
|
10
11
|
"preferGlobal": true,
|
|
11
12
|
"scripts": {
|