opencontext-mcp 0.1.0 → 1.0.0
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 -18
- package/package.json +2 -1
package/README.md
CHANGED
|
@@ -3,6 +3,7 @@
|
|
|
3
3
|
[](https://modelcontextprotocol.io/)
|
|
4
4
|
[](https://www.typescriptlang.org/)
|
|
5
5
|
[](https://nodejs.org/)
|
|
6
|
+
[](https://opencntx.dev/)
|
|
6
7
|
[](LICENSE)
|
|
7
8
|
|
|
8
9
|
OpenContext MCP gives AI agents persistent, project-local memory.
|
|
@@ -54,9 +55,9 @@ Add OpenContext MCP to your OpenCode MCP configuration:
|
|
|
54
55
|
}
|
|
55
56
|
```
|
|
56
57
|
|
|
57
|
-
### Cursor
|
|
58
|
+
### Cursor / Claude Desktop
|
|
58
59
|
|
|
59
|
-
|
|
60
|
+
Cursor and Claude Desktop use the same MCP server configuration:
|
|
60
61
|
|
|
61
62
|
```json
|
|
62
63
|
{
|
|
@@ -69,22 +70,7 @@ Add this server to your Cursor MCP configuration:
|
|
|
69
70
|
}
|
|
70
71
|
```
|
|
71
72
|
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
Add this entry to your Claude Desktop MCP configuration:
|
|
75
|
-
|
|
76
|
-
```json
|
|
77
|
-
{
|
|
78
|
-
"mcpServers": {
|
|
79
|
-
"opencontext": {
|
|
80
|
-
"command": "npx",
|
|
81
|
-
"args": ["-y", "opencontext-mcp"]
|
|
82
|
-
}
|
|
83
|
-
}
|
|
84
|
-
}
|
|
85
|
-
```
|
|
86
|
-
|
|
87
|
-
Restart your MCP client after updating configuration.
|
|
73
|
+
Restart your MCP client after updating the configuration.
|
|
88
74
|
|
|
89
75
|
## How It Works
|
|
90
76
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "opencontext-mcp",
|
|
3
|
-
"version": "
|
|
3
|
+
"version": "1.0.0",
|
|
4
4
|
"description": "A Model Context Protocol server for persistent project-specific AI agent context.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
@@ -39,6 +39,7 @@
|
|
|
39
39
|
},
|
|
40
40
|
"author": "slxca <hello@slxca.com> (https://slxca.com)",
|
|
41
41
|
"funding": "https://github.com/sponsors/slxca",
|
|
42
|
+
"homepage": "https://opencntx.dev",
|
|
42
43
|
"license": "MIT",
|
|
43
44
|
"engines": {
|
|
44
45
|
"node": ">=20.0.0"
|