@intangle/mcp-server 1.0.0 → 1.0.1

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 -29
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -1,10 +1,12 @@
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
+
9
+ **Important: You need an Intangle account to use this MCP server. Sign up at [intangle.app](https://intangle.app)**
8
10
 
9
11
  ## Installation
10
12
 
@@ -14,7 +16,7 @@ npm install -g @intangle/mcp-server
14
16
 
15
17
  ## Setup
16
18
 
17
- 1. **Get your API key** from [intangle.app](https://intangle.app) after signing up in "Settings" -> "Connect"
19
+ 1. **Create an Intangle account** at [intangle.app](https://intangle.app) and get your API key from Settings Connect
18
20
 
19
21
  2. **Configure Claude Desktop** by adding to your `claude_desktop_config.json`:
20
22
 
@@ -46,7 +48,8 @@ Once configured, Claude will automatically have access to your Intangle memory.
46
48
 
47
49
  - **Store memories**: "Remember that I prefer TypeScript over JavaScript"
48
50
  - **Search memories**: "What did we discuss about the authentication system?"
49
- - **Organize with topics**: Memories are automatically tagged and organized
51
+ - **Organize with spaces**: Separate memories for personal, work, and different projects
52
+ - **Tag with topics**: Memories are automatically tagged and organized
50
53
  - **Access across conversations**: All memories persist between chat sessions
51
54
 
52
55
  ## Available Tools
@@ -68,29 +71,6 @@ The MCP server provides these tools to Claude:
68
71
  - **Entity extraction**: Automatically identifies people, places, and concepts
69
72
  - **Temporal awareness**: Tracks when events happened vs when they were recorded
70
73
 
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
74
 
95
75
  ## Troubleshooting
96
76
 
@@ -103,9 +83,9 @@ If Claude can't access your memories:
103
83
 
104
84
  ## Support
105
85
 
106
- - Documentation: [intangle.ai/docs](https://intangle.ai/docs)
86
+ - Website: [intangle.app](https://intangle.app)
107
87
  - Issues: [github.com/intangle/mcp-server/issues](https://github.com/intangle/mcp-server/issues)
108
- - Email: support@intangle.ai
88
+ - Email: hello@intangle.app
109
89
 
110
90
  ## License
111
91
 
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.1",
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": {