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.
Files changed (2) hide show
  1. package/README.md +4 -18
  2. package/package.json +2 -1
package/README.md CHANGED
@@ -3,6 +3,7 @@
3
3
  [![MCP](https://img.shields.io/badge/MCP-compatible-2563eb)](https://modelcontextprotocol.io/)
4
4
  [![TypeScript](https://img.shields.io/badge/TypeScript-strict-3178c6)](https://www.typescriptlang.org/)
5
5
  [![Node.js](https://img.shields.io/badge/Node.js-20%2B-339933)](https://nodejs.org/)
6
+ [![Website](https://img.shields.io/badge/URL-opencntx.dev-c42f52?link=https%3A%2F%2Fopencntx.dev)](https://opencntx.dev/)
6
7
  [![License: MIT](https://img.shields.io/badge/License-MIT-yellow.svg)](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
- Add this server to your Cursor MCP configuration:
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
- ### Claude Desktop
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": "0.1.0",
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"