@intangle/mcp-server 1.0.0 → 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 +17 -35
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -1,22 +1,26 @@
1
1
  # @intangle/mcp-server
2
2
 
3
- Model Context Protocol server for [Intangle](https://intangle.ai) - AI memory that persists across conversations.
3
+ Model Context Protocol server for [Intangle](https://intangle.app) - Intelligent AI memory that persists across conversations.
4
4
 
5
5
  ## What is Intangle?
6
6
 
7
- Intangle provides persistent memory for AI assistants like Claude. Your conversations, context, and knowledge are stored and instantly accessible across all your AI interactions.
7
+ Intangle is an AI memory system that gives Claude and other AI assistants persistent, searchable memory across all your conversations and isolated spaces. Unlike traditional chat interfaces where context is lost between sessions, Intangle maintains your personal memory across isolated spaces, with intelligent storing and retriveal.
8
8
 
9
- ## Installation
10
-
11
- ```bash
12
- npm install -g @intangle/mcp-server
13
- ```
9
+ **Important: You need an Intangle account to use this MCP server. Sign up at [intangle.app](https://intangle.app)**
14
10
 
15
11
  ## Setup
16
12
 
17
- 1. **Get your API key** from [intangle.app](https://intangle.app) after signing up in "Settings" -> "Connect"
13
+ 1. **Create an Intangle account** at [intangle.app](https://intangle.app) and get your API key from Settings Connect
18
14
 
19
- 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`:
20
24
 
21
25
  ```json
22
26
  {
@@ -46,7 +50,8 @@ Once configured, Claude will automatically have access to your Intangle memory.
46
50
 
47
51
  - **Store memories**: "Remember that I prefer TypeScript over JavaScript"
48
52
  - **Search memories**: "What did we discuss about the authentication system?"
49
- - **Organize with topics**: Memories are automatically tagged and organized
53
+ - **Organize with spaces**: Separate memories for personal, work, and different projects
54
+ - **Tag with topics**: Memories are automatically tagged and organized
50
55
  - **Access across conversations**: All memories persist between chat sessions
51
56
 
52
57
  ## Available Tools
@@ -68,29 +73,6 @@ The MCP server provides these tools to Claude:
68
73
  - **Entity extraction**: Automatically identifies people, places, and concepts
69
74
  - **Temporal awareness**: Tracks when events happened vs when they were recorded
70
75
 
71
- ## Development
72
-
73
- ### Local Development
74
-
75
- ```bash
76
- # Clone the repository
77
- git clone https://github.com/intangle/mcp-server
78
- cd mcp-server
79
-
80
- # Install dependencies
81
- npm install
82
-
83
- # Build the TypeScript code
84
- npm run build
85
-
86
- # Run in development mode
87
- npm run dev
88
- ```
89
-
90
- ### Environment Variables
91
-
92
- - `MCP_API_KEY`: Your Intangle API key
93
- - `NEXT_APP_URL`: The Intangle API endpoint (default: https://app.intangle.ai)
94
76
 
95
77
  ## Troubleshooting
96
78
 
@@ -103,9 +85,9 @@ If Claude can't access your memories:
103
85
 
104
86
  ## Support
105
87
 
106
- - Documentation: [intangle.ai/docs](https://intangle.ai/docs)
88
+ - Website: [intangle.app](https://intangle.app)
107
89
  - Issues: [github.com/intangle/mcp-server/issues](https://github.com/intangle/mcp-server/issues)
108
- - Email: support@intangle.ai
90
+ - Email: hello@intangle.app
109
91
 
110
92
  ## License
111
93
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@intangle/mcp-server",
3
- "version": "1.0.0",
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",
@@ -13,7 +13,7 @@
13
13
  "prepublishOnly": "npm run build"
14
14
  },
15
15
  "bin": {
16
- "intangle-mcp": "./dist/index.js"
16
+ "intangle-mcp": "dist/index.js"
17
17
  },
18
18
  "keywords": [
19
19
  "mcp",
@@ -31,7 +31,7 @@
31
31
  "license": "MIT",
32
32
  "repository": {
33
33
  "type": "git",
34
- "url": "https://github.com/intangle/mcp-server"
34
+ "url": "git+https://github.com/intangle/mcp-server.git"
35
35
  },
36
36
  "homepage": "https://intangle.app",
37
37
  "engines": {