@carbonstopper/agent-mcp 0.1.9 → 0.1.11
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 +30 -3
- package/dist/tools.js +13 -3
- package/dist/tools.js.map +1 -1
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/dist/version.js.map +1 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -167,19 +167,28 @@ Use the product carbon modeling tools as follows:
|
|
|
167
167
|
|
|
168
168
|
## Tool Request Shape
|
|
169
169
|
|
|
170
|
-
The MCP schema only exposes fields the Agent should fill. Do not pass platform,
|
|
170
|
+
The MCP schema only exposes fields the Agent should fill. Do not pass platform, confirmation, or unrelated id fields unless they are listed for the selected tool.
|
|
171
|
+
|
|
172
|
+
Write tools accept optional trace fields:
|
|
173
|
+
|
|
174
|
+
- `messageId`: current Agent message id, used to associate business records with the current conversation message.
|
|
175
|
+
- `traceId`: Agent run trace id.
|
|
176
|
+
- `taskId`: Agent task or graph node id.
|
|
171
177
|
|
|
172
178
|
### `modeling_execute`
|
|
173
179
|
|
|
174
180
|
```json
|
|
175
181
|
{
|
|
176
182
|
"sessionId": "agent_xxx",
|
|
183
|
+
"messageId": "msg_xxx",
|
|
184
|
+
"traceId": "langgraph_run_xxx",
|
|
185
|
+
"taskId": "modeling_execute_node",
|
|
177
186
|
"idempotencyKey": "agent_xxx_modeling_execute_v1",
|
|
178
187
|
"input": {
|
|
179
188
|
"content": "500ml bottled mineral water",
|
|
180
189
|
"message": "Supplemental modeling context",
|
|
181
190
|
"scope": 1,
|
|
182
|
-
"scopeValue": "0,1,2",
|
|
191
|
+
"scopeValue": "0,1,2,3,4",
|
|
183
192
|
"factorScope": 3
|
|
184
193
|
}
|
|
185
194
|
}
|
|
@@ -190,13 +199,16 @@ The MCP schema only exposes fields the Agent should fill. Do not pass platform,
|
|
|
190
199
|
```json
|
|
191
200
|
{
|
|
192
201
|
"sessionId": "agent_xxx",
|
|
202
|
+
"messageId": "msg_xxx",
|
|
203
|
+
"traceId": "langgraph_run_xxx",
|
|
204
|
+
"taskId": "modeling_re_modeling_node",
|
|
193
205
|
"accountId": 2001,
|
|
194
206
|
"idempotencyKey": "agent_xxx_modeling_re_modeling_v1",
|
|
195
207
|
"input": {
|
|
196
208
|
"content": "Updated product description",
|
|
197
209
|
"message": "Recalculate with updated packaging",
|
|
198
210
|
"scope": 1,
|
|
199
|
-
"scopeValue": "0,1,2",
|
|
211
|
+
"scopeValue": "0,1,2,3,4",
|
|
200
212
|
"factorScope": 3
|
|
201
213
|
}
|
|
202
214
|
}
|
|
@@ -207,6 +219,9 @@ The MCP schema only exposes fields the Agent should fill. Do not pass platform,
|
|
|
207
219
|
```json
|
|
208
220
|
{
|
|
209
221
|
"sessionId": "agent_xxx",
|
|
222
|
+
"messageId": "msg_xxx",
|
|
223
|
+
"traceId": "langgraph_run_xxx",
|
|
224
|
+
"taskId": "modeling_update_node",
|
|
210
225
|
"accountId": 2001,
|
|
211
226
|
"idempotencyKey": "agent_xxx_modeling_update_v1",
|
|
212
227
|
"input": {
|
|
@@ -230,6 +245,9 @@ The MCP schema only exposes fields the Agent should fill. Do not pass platform,
|
|
|
230
245
|
```json
|
|
231
246
|
{
|
|
232
247
|
"sessionId": "agent_xxx",
|
|
248
|
+
"messageId": "msg_xxx",
|
|
249
|
+
"traceId": "langgraph_run_xxx",
|
|
250
|
+
"taskId": "report_generate_node",
|
|
233
251
|
"accountId": 2001,
|
|
234
252
|
"idempotencyKey": "agent_xxx_report_generate_v1",
|
|
235
253
|
"input": {
|
|
@@ -245,6 +263,9 @@ The MCP schema only exposes fields the Agent should fill. Do not pass platform,
|
|
|
245
263
|
```json
|
|
246
264
|
{
|
|
247
265
|
"sessionId": "agent_xxx",
|
|
266
|
+
"messageId": "msg_xxx",
|
|
267
|
+
"traceId": "langgraph_run_xxx",
|
|
268
|
+
"taskId": "report_regenerate_node",
|
|
248
269
|
"reportId": 3001,
|
|
249
270
|
"idempotencyKey": "agent_xxx_report_regenerate_v1",
|
|
250
271
|
"input": {
|
|
@@ -264,6 +285,12 @@ The MCP schema only exposes fields the Agent should fill. Do not pass platform,
|
|
|
264
285
|
|
|
265
286
|
ID fields such as `accountId` and `reportId` accept either numbers or numeric strings. Safe numeric strings are normalized before forwarding to the Agent internal API; very large numeric strings are preserved to avoid JavaScript precision loss.
|
|
266
287
|
|
|
288
|
+
Modeling option codes:
|
|
289
|
+
|
|
290
|
+
- `scope`: `0` half lifecycle, `1` full lifecycle, `2` custom lifecycle.
|
|
291
|
+
- `scopeValue`: comma-separated lifecycle stages. `0` raw material acquisition, `1` production manufacturing, `2` distribution and storage, `3` product use, `4` end-of-life disposal.
|
|
292
|
+
- `factorScope`: `1` Ecoinvent, `2` domestic factors, `3` any source.
|
|
293
|
+
|
|
267
294
|
Write or high-risk tools require `idempotencyKey`, especially:
|
|
268
295
|
|
|
269
296
|
- `modeling_execute`
|
package/dist/tools.js
CHANGED
|
@@ -14,10 +14,15 @@ const longId = z
|
|
|
14
14
|
z.string().regex(/^\d+$/, "Expected a numeric id string"),
|
|
15
15
|
])
|
|
16
16
|
.describe("Numeric id. Accepts either a number or a numeric string.");
|
|
17
|
+
const skillTraceFields = {
|
|
18
|
+
messageId: z.string().optional().describe("Current Agent message id for business record association."),
|
|
19
|
+
traceId: z.string().optional().describe("Agent run trace id."),
|
|
20
|
+
taskId: z.string().optional().describe("Agent task or graph node id."),
|
|
21
|
+
};
|
|
17
22
|
const modelingOptions = {
|
|
18
|
-
scope: z.union([z.number(), z.string()]).optional().describe("
|
|
19
|
-
scopeValue: z.string().optional().describe("
|
|
20
|
-
factorScope: z.union([z.number(), z.string().regex(/^\d+$/, "Expected a numeric factorScope string")]).optional().describe("
|
|
23
|
+
scope: z.union([z.number(), z.string()]).optional().describe("生命周期范围。传参必须使用代码值:0=半生命周期,1=全生命周期,2=自定义生命周期。"),
|
|
24
|
+
scopeValue: z.string().optional().describe("生命周期阶段,逗号分隔。传参必须使用代码值:0=原材料获取,1=生产制造,2=分销和储存,3=产品使用,4=废弃处置。"),
|
|
25
|
+
factorScope: z.union([z.number(), z.string().regex(/^\d+$/, "Expected a numeric factorScope string")]).optional().describe("因子来源偏好。传参必须使用代码值:1=Ecoinvent,2=国内因子,3=不限来源。"),
|
|
21
26
|
};
|
|
22
27
|
const modelingExecuteInput = z.object({
|
|
23
28
|
content: z.string().min(1).describe("Required product description for creating a new product carbon model."),
|
|
@@ -44,17 +49,20 @@ const reportRegenerateInput = z.object({
|
|
|
44
49
|
export const schemas = {
|
|
45
50
|
modeling_execute: z.object({
|
|
46
51
|
sessionId,
|
|
52
|
+
...skillTraceFields,
|
|
47
53
|
idempotencyKey,
|
|
48
54
|
input: modelingExecuteInput.describe("Required new-model input. input.content is required; input.message can carry user or Agent supplemental information."),
|
|
49
55
|
}),
|
|
50
56
|
modeling_re_modeling: z.object({
|
|
51
57
|
sessionId,
|
|
58
|
+
...skillTraceFields,
|
|
52
59
|
accountId: longId.describe("Product carbon account id"),
|
|
53
60
|
idempotencyKey,
|
|
54
61
|
input: reModelingInput.describe("Optional re-modeling input. Use input.content for updated product description and input.message for recalculation instructions.").optional(),
|
|
55
62
|
}),
|
|
56
63
|
modeling_update: z.object({
|
|
57
64
|
sessionId,
|
|
65
|
+
...skillTraceFields,
|
|
58
66
|
accountId: longId.describe("Product carbon account id"),
|
|
59
67
|
idempotencyKey,
|
|
60
68
|
input: modelUpdateInput.describe("Emission source update input. Use input.content for the source change instruction and input.message for supplemental context."),
|
|
@@ -65,12 +73,14 @@ export const schemas = {
|
|
|
65
73
|
}),
|
|
66
74
|
report_generate: z.object({
|
|
67
75
|
sessionId,
|
|
76
|
+
...skillTraceFields,
|
|
68
77
|
accountId: longId.describe("Product carbon account id"),
|
|
69
78
|
idempotencyKey,
|
|
70
79
|
input: reportGenerateInput.describe("Optional report generation input, such as reportName, standard, or message.").optional(),
|
|
71
80
|
}),
|
|
72
81
|
report_regenerate: z.object({
|
|
73
82
|
sessionId,
|
|
83
|
+
...skillTraceFields,
|
|
74
84
|
reportId: longId.describe("Existing report id to regenerate"),
|
|
75
85
|
idempotencyKey,
|
|
76
86
|
input: reportRegenerateInput.describe("Optional report regeneration input, such as message.").optional(),
|
package/dist/tools.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tools.js","sourceRoot":"","sources":["../src/tools.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,KAAK,OAAO,MAAM,cAAc,CAAC;AAExC,MAAM,SAAS,GAAG,CAAC;KAChB,MAAM,EAAE;KACR,GAAG,CAAC,CAAC,CAAC;KACN,QAAQ,CAAC,sGAAsG,CAAC,CAAC;AAEpH,MAAM,cAAc,GAAG,CAAC;KACrB,MAAM,EAAE;KACR,GAAG,CAAC,CAAC,CAAC;KACN,QAAQ,CAAC,sGAAsG,CAAC,CAAC;AAEpH,MAAM,MAAM,GAAG,CAAC;KACb,KAAK,CAAC;IACL,CAAC,CAAC,MAAM,EAAE,CAAC,GAAG,EAAE,CAAC,QAAQ,EAAE;IAC3B,CAAC,CAAC,MAAM,EAAE,CAAC,KAAK,CAAC,OAAO,EAAE,8BAA8B,CAAC;CAC1D,CAAC;KACD,QAAQ,CAAC,0DAA0D,CAAC,CAAC;AAExE,MAAM,eAAe,GAAG;IACtB,KAAK,EAAE,CAAC,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,MAAM,EAAE,EAAE,CAAC,CAAC,MAAM,EAAE,CAAC,CAAC,CAAC,QAAQ,EAAE,CAAC,QAAQ,CAAC,
|
|
1
|
+
{"version":3,"file":"tools.js","sourceRoot":"","sources":["../src/tools.ts"],"names":[],"mappings":"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"}
|
package/dist/version.d.ts
CHANGED
package/dist/version.js
CHANGED
package/dist/version.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"version.js","sourceRoot":"","sources":["../src/version.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,cAAc,CAAC;AAE9C,MAAM,UAAU,UAAU;IACxB,IAAI,CAAC,cAAc;QAAE,OAAO,EAAE,CAAC;IAC/B,qEAAqE;IACrE,IAAI,cAAc,CAAC,QAAQ,CAAC,KAAK,CAAC;QAAE,OAAO,cAAc,CAAC;IAC1D,4DAA4D;IAC5D,IAAI,CAAC;QACH,OAAO,MAAM,CAAC,IAAI,CAAC,cAAc,EAAE,QAAQ,CAAC,CAAC,QAAQ,CAAC,OAAO,CAAC,CAAC;IACjE,CAAC;IAAC,MAAM,CAAC;QACP,OAAO,EAAE,CAAC;IACZ,CAAC;AACH,CAAC;AAED,MAAM,CAAC,MAAM,OAAO,GAAG,
|
|
1
|
+
{"version":3,"file":"version.js","sourceRoot":"","sources":["../src/version.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,cAAc,EAAE,MAAM,cAAc,CAAC;AAE9C,MAAM,UAAU,UAAU;IACxB,IAAI,CAAC,cAAc;QAAE,OAAO,EAAE,CAAC;IAC/B,qEAAqE;IACrE,IAAI,cAAc,CAAC,QAAQ,CAAC,KAAK,CAAC;QAAE,OAAO,cAAc,CAAC;IAC1D,4DAA4D;IAC5D,IAAI,CAAC;QACH,OAAO,MAAM,CAAC,IAAI,CAAC,cAAc,EAAE,QAAQ,CAAC,CAAC,QAAQ,CAAC,OAAO,CAAC,CAAC;IACjE,CAAC;IAAC,MAAM,CAAC;QACP,OAAO,EAAE,CAAC;IACZ,CAAC;AACH,CAAC;AAED,MAAM,CAAC,MAAM,OAAO,GAAG,QAAQ,CAAC;AAChC,MAAM,CAAC,MAAM,MAAM,GAAG,MAAM,CAAC;AAC7B,MAAM,CAAC,MAAM,SAAS,GAAG,SAAS,CAAC"}
|