@ziggs-ai/ziggs-mcp 0.7.1 → 0.7.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.
- package/README.md +10 -0
- package/examples/chatgpt-unsupported.md +22 -0
- package/package.json +5 -4
package/README.md
CHANGED
|
@@ -80,6 +80,16 @@ node scripts/smoke-ziggs-mcp-oauth-z474-consent-probe.mjs --auto
|
|
|
80
80
|
|
|
81
81
|
**Manual claude.ai connector:** step-by-step checklist — [`examples/claude-ai-oauth.md`](examples/claude-ai-oauth.md).
|
|
82
82
|
|
|
83
|
+
### MCP registry (`server.json`)
|
|
84
|
+
|
|
85
|
+
This package ships [`server.json`](./server.json) for [registry.modelcontextprotocol.io](https://registry.modelcontextprotocol.io) (ZIG-1004). `package.json` includes matching `mcpName: io.github.ZiggsAI/ziggs`. Description must be ≤100 characters (registry validation).
|
|
86
|
+
|
|
87
|
+
**Publish path:** GitHub Actions workflow `Publish MCP registry` (OIDC as `ZiggsAI`) — runs on `ziggs-mcp-v*` tags after npm publish, or `workflow_dispatch`. Local `mcp-publisher login github` with a personal PAT only grants `io.github.<your-user>/*`, not the org namespace.
|
|
88
|
+
|
|
89
|
+
### ChatGPT
|
|
90
|
+
|
|
91
|
+
**Unsupported / unverified** — see [`examples/chatgpt-unsupported.md`](examples/chatgpt-unsupported.md). Use claude.ai, Claude Code, or Cursor.
|
|
92
|
+
|
|
83
93
|
---
|
|
84
94
|
|
|
85
95
|
## Cursor
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
# ChatGPT + Ziggs MCP
|
|
2
|
+
|
|
3
|
+
**Status (ZIG-1004): unsupported / unverified.**
|
|
4
|
+
|
|
5
|
+
Ziggs remote MCP (`https://mcp.ziggsai.com/mcp`) is prod-verified for:
|
|
6
|
+
|
|
7
|
+
- Claude Code (remote OAuth and stdio)
|
|
8
|
+
- claude.ai custom connectors
|
|
9
|
+
- Cursor MCP (HTTP + OAuth)
|
|
10
|
+
|
|
11
|
+
ChatGPT developer-mode / custom MCP connectors have **not** been run end-to-end against Ziggs OAuth (RFC 8414/9728 discovery → consent → Streamable HTTP). Do not claim “works with ChatGPT” until that smoke exists.
|
|
12
|
+
|
|
13
|
+
## When someone asks
|
|
14
|
+
|
|
15
|
+
Point them at [Connect an assistant](https://ziggsai.com/docs#connect-assistant) and one of the verified clients above.
|
|
16
|
+
|
|
17
|
+
## To verify later
|
|
18
|
+
|
|
19
|
+
1. ChatGPT developer mode with a custom MCP / connector pointing at `https://mcp.ziggsai.com/mcp`.
|
|
20
|
+
2. Complete Ziggs consent (pick org).
|
|
21
|
+
3. Call `ziggs_auth_status` then `ziggs_inbox`.
|
|
22
|
+
4. Record pass/fail here and flip docs copy from unsupported to supported.
|
package/package.json
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ziggs-ai/ziggs-mcp",
|
|
3
|
-
"version": "0.7.
|
|
4
|
-
"description": "MCP server for Claude Code, Cursor, and other MCP hosts
|
|
3
|
+
"version": "0.7.2",
|
|
4
|
+
"description": "MCP server for Claude Code, Cursor, and other MCP hosts \u2014 act as your Ziggs delegate agent",
|
|
5
5
|
"type": "module",
|
|
6
6
|
"bin": {
|
|
7
7
|
"ziggs-mcp": "./dist/index.js"
|
|
@@ -41,7 +41,7 @@
|
|
|
41
41
|
"zod": "^3.24.2"
|
|
42
42
|
},
|
|
43
43
|
"devDependencies": {
|
|
44
|
-
"@ziggs-ai/agent-sdk": "^0.
|
|
44
|
+
"@ziggs-ai/agent-sdk": "^0.9.0"
|
|
45
45
|
},
|
|
46
46
|
"engines": {
|
|
47
47
|
"node": ">=20"
|
|
@@ -70,5 +70,6 @@
|
|
|
70
70
|
"type": "git",
|
|
71
71
|
"url": "https://github.com/ZiggsAI/agentplus.git",
|
|
72
72
|
"directory": "ziggs-mcp"
|
|
73
|
-
}
|
|
73
|
+
},
|
|
74
|
+
"mcpName": "io.github.ZiggsAI/ziggs"
|
|
74
75
|
}
|