hyperterse 2.3.0 → 2.4.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 +23 -2
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -63,9 +63,11 @@ Generated starter structure:
|
|
|
63
63
|
```text
|
|
64
64
|
.
|
|
65
65
|
├── .hyperterse
|
|
66
|
-
├── .
|
|
66
|
+
├── .agents/
|
|
67
67
|
│ └── skills/
|
|
68
|
-
│
|
|
68
|
+
│ ├── hyperterse-docs/
|
|
69
|
+
│ │ └── SKILL.md
|
|
70
|
+
│ └── hyperterse-agents/
|
|
69
71
|
│ └── SKILL.md
|
|
70
72
|
└── app/
|
|
71
73
|
└── tools/
|
|
@@ -256,6 +258,25 @@ Execution pipeline:
|
|
|
256
258
|
5. Output transform (optional)
|
|
257
259
|
6. Response serialization
|
|
258
260
|
|
|
261
|
+
## MCP spec compliance
|
|
262
|
+
|
|
263
|
+
Hyperterse implements the [Model Context Protocol (MCP)](https://modelcontextprotocol.io/) specification **[2025-11-25](https://modelcontextprotocol.io/specification/2025-11-25)**.
|
|
264
|
+
|
|
265
|
+
Compliance status by component:
|
|
266
|
+
|
|
267
|
+
| Spec component | Status |
|
|
268
|
+
| ----------------------------------------------------------------------------------------------------------------------------- | :----: |
|
|
269
|
+
| [Base protocol](https://modelcontextprotocol.io/specification/2025-11-25/basic) (JSON-RPC 2.0) | ✅ |
|
|
270
|
+
| [Lifecycle](https://modelcontextprotocol.io/specification/2025-11-25/basic/lifecycle) (initialize/initialized) | ✅ |
|
|
271
|
+
| [Tools](https://modelcontextprotocol.io/specification/2025-11-25/server/tools) (list, call, listChanged) | ✅ |
|
|
272
|
+
| [Resources](https://modelcontextprotocol.io/specification/2025-11-25/server/resources) (list, read, subscribe, updated) | ✅ |
|
|
273
|
+
| [Prompts](https://modelcontextprotocol.io/specification/2025-11-25/server/prompts) (list, get, listChanged) | ✅ |
|
|
274
|
+
| [Completion](https://modelcontextprotocol.io/specification/2025-11-25/server/utilities/completion) (ref/prompt, ref/resource) | ✅ |
|
|
275
|
+
| [Pagination](https://modelcontextprotocol.io/specification/2025-11-25/server/utilities/pagination) (cursor/nextCursor) | ⚠️ |
|
|
276
|
+
| Tool result content types (image, audio, resource_link) | ⚠️ |
|
|
277
|
+
|
|
278
|
+
Text content for tool results is supported; image, audio, and resource links are optional. Pagination applies when tools, prompts, or resources exceed typical small-to-medium counts.
|
|
279
|
+
|
|
259
280
|
## Security notes
|
|
260
281
|
|
|
261
282
|
- Use `{{ env.VAR_NAME }}` for secrets and connection strings.
|