chron-mcp 0.1.12 → 0.1.13

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.
@@ -1,14 +1,14 @@
1
1
  {
2
2
  "name": "chron",
3
3
  "description": "Audit-grade timestamped logs for every AI conversation — stored locally, owned by you.",
4
- "version": "0.1.1",
4
+ "version": "0.1.12",
5
5
  "author": {
6
6
  "name": "Nivaya",
7
7
  "email": "ksrinivas07530@gmail.com"
8
8
  },
9
- "homepage": "https://github.com/nivaya/chron",
10
- "repository": "https://github.com/nivaya/chron",
11
- "license": "MIT",
9
+ "homepage": "https://github.com/sirinivask/chron",
10
+ "repository": "https://github.com/sirinivask/chron",
11
+ "license": "SEE LICENSE IN LICENSE",
12
12
  "keywords": [
13
13
  "audit",
14
14
  "logging",
package/README.md CHANGED
@@ -145,12 +145,15 @@ Chron ships with `skills/chron.skill.md` — a plain-text instruction file that
145
145
 
146
146
  | Tool | Description |
147
147
  |---|---|
148
- | `start_session` | Create or resume a named audit session |
148
+ | `init_session` | Initialize or resume a session returns session_id, message count, and recent messages in one call |
149
+ | `start_session` | Create a new named audit session (legacy — prefer `init_session`) |
149
150
  | `log_message` | Record a single message with the current local datetime |
150
151
  | `log_exchange` | Log a user/assistant pair atomically (for batch imports) |
151
152
  | `list_sessions` | List all sessions ordered by most recently active |
152
153
  | `get_session_history` | Retrieve the full timestamped log for a session |
153
154
  | `verify_session` | Verify the tamper-evident hash chain — detects any post-log edits |
155
+ | `scan_prompt` | Scan text for secrets (API keys, credentials) before logging — returns masked detections |
156
+ | `rehydrate_response` | Restore redacted placeholders in an assistant response back to their original values |
154
157
 
155
158
  ---
156
159
 
@@ -195,7 +198,7 @@ Point your MCP config at the URL:
195
198
  {
196
199
  "mcpServers": {
197
200
  "chron": {
198
- "url": "https://your-server/mcp",
201
+ "url": "https://your-server/sse",
199
202
  "headers": {
200
203
  "Authorization": "Bearer your-key"
201
204
  }