@i4ctime/q-ring 0.2.1 → 0.2.3
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 +29 -1
- package/package.json +3 -2
package/README.md
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
<div align="center">
|
|
2
|
-
<img src="
|
|
2
|
+
<img src="https://unpkg.com/@i4ctime/q-ring@latest/assets/logo.png" alt="q-ring logo" width="100%" />
|
|
3
3
|
</div>
|
|
4
4
|
|
|
5
5
|
# q-ring
|
|
@@ -222,6 +222,20 @@ q-ring includes a full MCP server with 20 tools for AI agent integration.
|
|
|
222
222
|
|
|
223
223
|
Add to `.cursor/mcp.json` or `.kiro/mcp.json`:
|
|
224
224
|
|
|
225
|
+
**If q-ring is installed globally** (e.g. `pnpm add -g @i4ctime/q-ring`):
|
|
226
|
+
|
|
227
|
+
```json
|
|
228
|
+
{
|
|
229
|
+
"mcpServers": {
|
|
230
|
+
"q-ring": {
|
|
231
|
+
"command": "qring-mcp"
|
|
232
|
+
}
|
|
233
|
+
}
|
|
234
|
+
}
|
|
235
|
+
```
|
|
236
|
+
|
|
237
|
+
**If using a local clone:**
|
|
238
|
+
|
|
225
239
|
```json
|
|
226
240
|
{
|
|
227
241
|
"mcpServers": {
|
|
@@ -237,6 +251,20 @@ Add to `.cursor/mcp.json` or `.kiro/mcp.json`:
|
|
|
237
251
|
|
|
238
252
|
Add to `~/.claude/claude_desktop_config.json`:
|
|
239
253
|
|
|
254
|
+
**Global install:**
|
|
255
|
+
|
|
256
|
+
```json
|
|
257
|
+
{
|
|
258
|
+
"mcpServers": {
|
|
259
|
+
"q-ring": {
|
|
260
|
+
"command": "qring-mcp"
|
|
261
|
+
}
|
|
262
|
+
}
|
|
263
|
+
}
|
|
264
|
+
```
|
|
265
|
+
|
|
266
|
+
**Local clone:**
|
|
267
|
+
|
|
240
268
|
```json
|
|
241
269
|
{
|
|
242
270
|
"mcpServers": {
|
package/package.json
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@i4ctime/q-ring",
|
|
3
|
-
"version": "0.2.
|
|
3
|
+
"version": "0.2.3",
|
|
4
4
|
"description": "Quantum keyring for AI coding tools — Cursor, Kiro, Claude Code. Secrets, superposition, entanglement, MCP.",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
|
-
"qring": "./dist/index.js"
|
|
7
|
+
"qring": "./dist/index.js",
|
|
8
|
+
"qring-mcp": "./dist/mcp.js"
|
|
8
9
|
},
|
|
9
10
|
"main": "./dist/mcp.js",
|
|
10
11
|
"files": [
|