@intangle/mcp-server 1.0.1 → 1.0.2

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 +9 -7
  2. package/package.json +1 -1
package/README.md CHANGED
@@ -8,17 +8,19 @@ Intangle is an AI memory system that gives Claude and other AI assistants persis
8
8
 
9
9
  **Important: You need an Intangle account to use this MCP server. Sign up at [intangle.app](https://intangle.app)**
10
10
 
11
- ## Installation
12
-
13
- ```bash
14
- npm install -g @intangle/mcp-server
15
- ```
16
-
17
11
  ## Setup
18
12
 
19
13
  1. **Create an Intangle account** at [intangle.app](https://intangle.app) and get your API key from Settings → Connect
20
14
 
21
- 2. **Configure Claude Desktop** by adding to your `claude_desktop_config.json`:
15
+ 2. **Configure Provider Access **
16
+
17
+ Claude code by running the command below (recommend "-s" user for global across projects):
18
+
19
+ ```bash
20
+ claude mcp add intangle -s user --env MCP_API_KEY=<your-api-key-here> --env NEXT_APP_URL=https://intangle.app -- npx -y @intangle/mcp-server
21
+ ```
22
+
23
+ Standard MCP (Claude desktop, Cursor): by adding to your `claude_desktop_config.json` or `mcp.json`:
22
24
 
23
25
  ```json
24
26
  {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@intangle/mcp-server",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Model Context Protocol server for Intangle - AI memory that persists across conversations",
5
5
  "main": "dist/index.js",
6
6
  "type": "module",