hyperterse 2.2.1 → 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 +28 -3
- 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/
|
|
@@ -245,7 +247,7 @@ Each tool must define exactly one execution mode:
|
|
|
245
247
|
|
|
246
248
|
## Runtime model
|
|
247
249
|
|
|
248
|
-
All
|
|
250
|
+
All MCP interaction happens through Streamable HTTP at `/mcp` (JSON-RPC 2.0), including tools, prompts, resources, completion, and subscriptions.
|
|
249
251
|
|
|
250
252
|
Execution pipeline:
|
|
251
253
|
|
|
@@ -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.
|
|
@@ -269,11 +290,15 @@ Execution pipeline:
|
|
|
269
290
|
- [Quickstart](https://docs.hyperterse.com/quickstart)
|
|
270
291
|
- [Project structure](https://docs.hyperterse.com/concepts/project-structure)
|
|
271
292
|
- [Tools](https://docs.hyperterse.com/concepts/tools)
|
|
293
|
+
- [Prompts](https://docs.hyperterse.com/concepts/prompts)
|
|
294
|
+
- [Resources](https://docs.hyperterse.com/concepts/resources)
|
|
272
295
|
- [Adapters](https://docs.hyperterse.com/concepts/adapters)
|
|
273
296
|
- [Scripts](https://docs.hyperterse.com/concepts/scripts)
|
|
274
297
|
- [MCP transport](https://docs.hyperterse.com/runtime/mcp-transport)
|
|
275
298
|
- [Execution pipeline](https://docs.hyperterse.com/runtime/execution-pipeline)
|
|
276
299
|
- [CLI reference](https://docs.hyperterse.com/reference/cli)
|
|
300
|
+
- [Prompt config reference](https://docs.hyperterse.com/reference/prompt-config)
|
|
301
|
+
- [Resource config reference](https://docs.hyperterse.com/reference/resource-config)
|
|
277
302
|
- [Configuration schemas](https://docs.hyperterse.com/reference/configuration-schemas)
|
|
278
303
|
|
|
279
304
|
## Contributing
|