@finchagentic/mcp 4.7.4 → 4.7.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 +7 -7
  2. package/package.json +3 -2
package/README.md CHANGED
@@ -29,13 +29,13 @@ Always pin the version. Never use `@latest`.
29
29
 
30
30
  ```bash
31
31
  # One-command installer (detects common MCP clients)
32
- npx -y -p @finchagentic/mcp@4.7.4 finch install
32
+ npx -y -p @finchagentic/mcp@4.7.5 finch install
33
33
  ```
34
34
 
35
35
  ### Claude Code
36
36
 
37
37
  ```bash
38
- claude mcp add finch -s user -- npx -y -p @finchagentic/mcp@4.7.4 finch-mcp
38
+ claude mcp add finch -s user -- npx -y -p @finchagentic/mcp@4.7.5 finch-mcp
39
39
  ```
40
40
 
41
41
  ### Cursor / Windsurf / Claude Desktop
@@ -45,7 +45,7 @@ claude mcp add finch -s user -- npx -y -p @finchagentic/mcp@4.7.4 finch-mcp
45
45
  "mcpServers": {
46
46
  "finch": {
47
47
  "command": "npx",
48
- "args": ["-y", "-p", "@finchagentic/mcp@4.7.4", "finch-mcp"]
48
+ "args": ["-y", "-p", "@finchagentic/mcp@4.7.5", "finch-mcp"]
49
49
  }
50
50
  }
51
51
  }
@@ -59,7 +59,7 @@ claude mcp add finch -s user -- npx -y -p @finchagentic/mcp@4.7.4 finch-mcp
59
59
  "finch": {
60
60
  "type": "stdio",
61
61
  "command": "npx",
62
- "args": ["-y", "-p", "@finchagentic/mcp@4.7.4", "finch-mcp"]
62
+ "args": ["-y", "-p", "@finchagentic/mcp@4.7.5", "finch-mcp"]
63
63
  }
64
64
  }
65
65
  }
@@ -124,7 +124,7 @@ Default palette is `core` (lighter context). Full set:
124
124
  Finch is the runtime. **Your LLM is the brain. Your data stays yours.**
125
125
 
126
126
  ```bash
127
- npx -y -p @finchagentic/mcp@4.7.4 finch setup
127
+ npx -y -p @finchagentic/mcp@4.7.5 finch setup
128
128
  # enable local vault (and optional local memory)
129
129
  ```
130
130
 
@@ -156,7 +156,7 @@ Scheduled/cloud features still need an account. Core memory, vault, and public-d
156
156
  Guided setup:
157
157
 
158
158
  ```bash
159
- npx -y -p @finchagentic/mcp@4.7.4 finch setup
159
+ npx -y -p @finchagentic/mcp@4.7.5 finch setup
160
160
  ```
161
161
 
162
162
  ## Security
@@ -165,7 +165,7 @@ npx -y -p @finchagentic/mcp@4.7.4 finch setup
165
165
  |:-:|----------|------|
166
166
  | 1 | Prompt injection | External content is data only — never instructions |
167
167
  | 2 | Mainnet confirm | Estimate → preview → confirm → execute |
168
- | 3 | Pinned install | Always `@finchagentic/mcp@4.7.4`, never `@latest` |
168
+ | 3 | Pinned install | Always `@finchagentic/mcp@4.7.5`, never `@latest` |
169
169
  | 4 | Credential vault | Never paste secrets into prompts or third-party tools |
170
170
  | 5 | Data disclosure | Know what leaves the machine (LLM, Firecrawl, GitHub, chain RPCs) |
171
171
  | 6 | Server monitors | Scheduled jobs need explicit confirmation |
package/package.json CHANGED
@@ -1,11 +1,12 @@
1
1
  {
2
2
  "name": "@finchagentic/mcp",
3
- "version": "4.7.4",
3
+ "version": "4.7.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
+ "mcp": "dist/index.js"
9
10
  },
10
11
  "preferGlobal": true,
11
12
  "scripts": {