@jaypie/mcp 0.7.18 → 0.7.21
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/dist/suites/docs/index.js +1 -1
- package/package.json +1 -1
- package/release-notes/jaypie/1.2.12.md +9 -0
- package/release-notes/jaypie/1.2.13.md +9 -0
- package/release-notes/llm/1.2.10.md +11 -0
- package/release-notes/llm/1.2.9.md +11 -0
- package/release-notes/mcp/0.7.20.md +9 -0
- package/release-notes/mcp/0.7.21.md +10 -0
- package/skills/dynamodb.md +28 -0
- package/skills/llm.md +1 -0
|
@@ -9,7 +9,7 @@ import { gt } from 'semver';
|
|
|
9
9
|
/**
|
|
10
10
|
* Docs Suite - Documentation services (skill, version, release_notes)
|
|
11
11
|
*/
|
|
12
|
-
const BUILD_VERSION_STRING = "@jaypie/mcp@0.7.
|
|
12
|
+
const BUILD_VERSION_STRING = "@jaypie/mcp@0.7.21#ca417bad"
|
|
13
13
|
;
|
|
14
14
|
const __filename$1 = fileURLToPath(import.meta.url);
|
|
15
15
|
const __dirname$1 = path.dirname(__filename$1);
|
package/package.json
CHANGED
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
---
|
|
2
|
+
version: 1.2.10
|
|
3
|
+
date: 2026-02-18
|
|
4
|
+
summary: Add retry for transient network errors across all LLM providers
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## Changes
|
|
8
|
+
|
|
9
|
+
- Add `isTransientNetworkError` utility that detects low-level Node.js/undici network errors (ECONNRESET, ETIMEDOUT, etc.) by inspecting error codes, messages, and the `error.cause` chain
|
|
10
|
+
- Integrate transient network error detection into all four provider adapters (Anthropic, Gemini, OpenAI, OpenRouter) so network errors are classified as retryable instead of unknown
|
|
11
|
+
- Add retry logic to `StreamLoop` for connection-level failures before any chunks are yielded; mid-stream failures emit an error chunk instead of throwing
|
|
@@ -0,0 +1,11 @@
|
|
|
1
|
+
---
|
|
2
|
+
version: 1.2.9
|
|
3
|
+
date: 2026-02-17
|
|
4
|
+
summary: Add first-class temperature parameter to LlmOperateOptions
|
|
5
|
+
---
|
|
6
|
+
|
|
7
|
+
## Changes
|
|
8
|
+
|
|
9
|
+
- Add `temperature` as a first-class option on `LlmOperateOptions` and all adapters (Anthropic, OpenAI, Gemini, OpenRouter)
|
|
10
|
+
- Explicit `temperature` takes precedence over `providerOptions.temperature` when both are set
|
|
11
|
+
- Gemini maps temperature into `config.temperature`; all other providers set it top-level
|
package/skills/dynamodb.md
CHANGED
|
@@ -112,6 +112,34 @@ const table = new JaypieDynamoDb(this, "myApp", {
|
|
|
112
112
|
|
|
113
113
|
## Local Development
|
|
114
114
|
|
|
115
|
+
Use docker-compose for local DynamoDB. The `@jaypie/dynamodb` MCP tool can generate a `docker-compose.yml` with custom ports.
|
|
116
|
+
|
|
117
|
+
### Suggested package.json Scripts
|
|
118
|
+
|
|
119
|
+
```json
|
|
120
|
+
{
|
|
121
|
+
"scripts": {
|
|
122
|
+
"dynamo:init": "docker compose up -d && npm run dynamo:create-table",
|
|
123
|
+
"dynamo:create-table": "AWS_ACCESS_KEY_ID=local AWS_SECRET_ACCESS_KEY=local aws dynamodb create-table --table-name jaypie-local --attribute-definitions AttributeName=pk,AttributeType=S AttributeName=sk,AttributeType=S --key-schema AttributeName=pk,KeyType=HASH AttributeName=sk,KeyType=RANGE --billing-mode PAY_PER_REQUEST --endpoint-url http://127.0.0.1:9060 2>/dev/null || true",
|
|
124
|
+
"dynamo:remove": "docker compose down -v",
|
|
125
|
+
"dynamo:start": "docker compose up -d",
|
|
126
|
+
"dynamo:stop": "docker compose down"
|
|
127
|
+
}
|
|
128
|
+
}
|
|
129
|
+
```
|
|
130
|
+
|
|
131
|
+
| Script | Description |
|
|
132
|
+
|--------|-------------|
|
|
133
|
+
| `dynamo:init` | Start containers and create the default table |
|
|
134
|
+
| `dynamo:create-table` | Create the local table (idempotent) |
|
|
135
|
+
| `dynamo:remove` | Stop containers and delete data volumes |
|
|
136
|
+
| `dynamo:start` | Start containers (data persists) |
|
|
137
|
+
| `dynamo:stop` | Stop containers (data persists) |
|
|
138
|
+
|
|
139
|
+
Adjust the `--endpoint-url` port and `--table-name` to match your `docker-compose.yml`.
|
|
140
|
+
|
|
141
|
+
### Manual Setup
|
|
142
|
+
|
|
115
143
|
```bash
|
|
116
144
|
# Start local DynamoDB
|
|
117
145
|
docker run -p 8000:8000 amazon/dynamodb-local
|
package/skills/llm.md
CHANGED
|
@@ -388,6 +388,7 @@ interface LlmOperateOptions {
|
|
|
388
388
|
instructions?: string; // Additional instructions
|
|
389
389
|
model?: string; // Model override
|
|
390
390
|
system?: string; // System prompt
|
|
391
|
+
temperature?: number; // Sampling temperature (0-2)
|
|
391
392
|
tools?: LlmTool[] | Toolkit; // Available tools
|
|
392
393
|
turns?: boolean | number; // Max conversation turns
|
|
393
394
|
user?: string; // User ID for logging
|