@carbonstopper/agent-mcp 0.1.5 → 0.1.7
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/AGENTS.md +0 -3
- package/README.md +2 -16
- package/dist/tools.js +7 -113
- package/dist/tools.js.map +1 -1
- package/dist/version.d.ts +1 -1
- package/dist/version.js +1 -1
- package/package.json +1 -1
package/AGENTS.md
CHANGED
|
@@ -4,7 +4,6 @@
|
|
|
4
4
|
|
|
5
5
|
This is an MCP server for Carbonstop server-side Agent usage. It supports stdio for local MCP clients and Streamable HTTP for deployed Agent services. It wraps Java internal Agent APIs through gateway service prefixes:
|
|
6
6
|
|
|
7
|
-
- `/ai/agent/internal/platform/**`
|
|
8
7
|
- `/footprint3/agent/internal/skills/**`
|
|
9
8
|
|
|
10
9
|
## Authentication
|
|
@@ -39,9 +38,7 @@ src/version.ts version info
|
|
|
39
38
|
|
|
40
39
|
## Tool Families
|
|
41
40
|
|
|
42
|
-
- Platform context and memory: `session_context`, `project_memory_get`, `project_memory_patch`, `project_memory_compress`
|
|
43
41
|
- Product carbon skills: `modeling_preview`, `modeling_execute`, `modeling_re_modeling`, `modeling_update`, `modeling_detail`
|
|
44
42
|
- Report skills: `report_generate`, `report_regenerate`, `report_detail`
|
|
45
|
-
- Support skills: `analysis_run`, `factor_search`, `knowledge_search`
|
|
46
43
|
|
|
47
44
|
Write or high-risk tools require `idempotencyKey`.
|
package/README.md
CHANGED
|
@@ -145,13 +145,10 @@ For local debugging against a non-default gateway, add:
|
|
|
145
145
|
|
|
146
146
|
## Available Tools
|
|
147
147
|
|
|
148
|
+
Only product carbon modeling and report tools are exposed to the Agent in this release.
|
|
149
|
+
|
|
148
150
|
| Tool | Description |
|
|
149
151
|
| --- | --- |
|
|
150
|
-
| `session_context` | Resolve session ownership and business context. |
|
|
151
|
-
| `project_memory_get` | Read project memory. |
|
|
152
|
-
| `project_memory_patch` | Patch project memory. Requires `idempotencyKey`. |
|
|
153
|
-
| `project_memory_compress` | Save compressed project memory. Requires `idempotencyKey`. |
|
|
154
|
-
| `modeling_preview` | Preview product carbon AI modeling. |
|
|
155
152
|
| `modeling_execute` | Create a new product carbon AI model. Requires `idempotencyKey` and `input.content`. |
|
|
156
153
|
| `modeling_re_modeling` | Re-run product carbon AI modeling for an existing account. Requires `accountId` and `idempotencyKey`. |
|
|
157
154
|
| `modeling_update` | Supplement or update emission sources for an existing model. Requires `accountId` and `idempotencyKey`. |
|
|
@@ -159,9 +156,6 @@ For local debugging against a non-default gateway, add:
|
|
|
159
156
|
| `report_generate` | Generate a product carbon report. Requires `idempotencyKey`. |
|
|
160
157
|
| `report_regenerate` | Regenerate an existing product carbon report. Requires `reportId` and `idempotencyKey`. |
|
|
161
158
|
| `report_detail` | Get product carbon report detail and latest report URL. |
|
|
162
|
-
| `analysis_run` | Run product carbon analysis. |
|
|
163
|
-
| `factor_search` | Search and match carbon emission factors. |
|
|
164
|
-
| `knowledge_search` | Search carbon knowledge. |
|
|
165
159
|
|
|
166
160
|
### Modeling Tool Selection
|
|
167
161
|
|
|
@@ -196,17 +190,9 @@ Write or high-risk tools require `idempotencyKey`, especially:
|
|
|
196
190
|
- `modeling_update`
|
|
197
191
|
- `report_generate`
|
|
198
192
|
- `report_regenerate`
|
|
199
|
-
- `project_memory_patch`
|
|
200
|
-
- `project_memory_compress`
|
|
201
193
|
|
|
202
194
|
## API Routes
|
|
203
195
|
|
|
204
|
-
Platform APIs are called through the `ai` gateway prefix:
|
|
205
|
-
|
|
206
|
-
```text
|
|
207
|
-
/ai/agent/internal/platform/**
|
|
208
|
-
```
|
|
209
|
-
|
|
210
196
|
Product carbon skill APIs are called through the `footprint3` gateway prefix:
|
|
211
197
|
|
|
212
198
|
```text
|
package/dist/tools.js
CHANGED
|
@@ -54,115 +54,52 @@ const reportGenerateInput = z.object({
|
|
|
54
54
|
standard: z.string().optional().describe("Report standard, for example ISO 14067."),
|
|
55
55
|
message: z.string().optional().describe("Supplemental report generation instruction from the user or Agent."),
|
|
56
56
|
}).catchall(z.unknown());
|
|
57
|
-
const analysisInput = z.object({
|
|
58
|
-
analysisType: z.string().describe("Analysis type, for example hotspot."),
|
|
59
|
-
message: z.string().optional().describe("Supplemental analysis instruction from the user or Agent."),
|
|
60
|
-
}).catchall(z.unknown());
|
|
61
|
-
const factorSearchInput = z.object({
|
|
62
|
-
query: z.string().min(1).describe("Factor search keyword, for example PET granules or electricity."),
|
|
63
|
-
unitName: z.string().optional().describe("Preferred unit name, for example kg or kWh."),
|
|
64
|
-
message: z.string().optional().describe("Supplemental factor matching context from the user or Agent."),
|
|
65
|
-
}).catchall(z.unknown());
|
|
66
|
-
const knowledgeSearchInput = z.object({
|
|
67
|
-
query: z.string().min(1).describe("Knowledge search question or keyword."),
|
|
68
|
-
message: z.string().optional().describe("Supplemental knowledge search context from the user or Agent."),
|
|
69
|
-
}).catchall(z.unknown());
|
|
70
57
|
export const schemas = {
|
|
71
|
-
session_context: z.object({
|
|
72
|
-
sessionId,
|
|
73
|
-
}),
|
|
74
|
-
project_memory_get: z.object({
|
|
75
|
-
sessionId,
|
|
76
|
-
projectId: z.number().optional(),
|
|
77
|
-
...traceFields,
|
|
78
|
-
input: jsonObject.optional(),
|
|
79
|
-
}),
|
|
80
|
-
project_memory_patch: z.object({
|
|
81
|
-
sessionId,
|
|
82
|
-
projectId: z.number().optional(),
|
|
83
|
-
...traceFields,
|
|
84
|
-
idempotencyKey,
|
|
85
|
-
input: jsonObject.describe("Memory patch payload"),
|
|
86
|
-
}),
|
|
87
|
-
project_memory_compress: z.object({
|
|
88
|
-
sessionId,
|
|
89
|
-
projectId: z.number().optional(),
|
|
90
|
-
...traceFields,
|
|
91
|
-
idempotencyKey,
|
|
92
|
-
input: jsonObject.describe("Compressed memory payload"),
|
|
93
|
-
}),
|
|
94
|
-
modeling_preview: z.object({
|
|
95
|
-
...commonSkillFields,
|
|
96
|
-
input: modelingInput,
|
|
97
|
-
}),
|
|
98
58
|
modeling_execute: z.object({
|
|
99
59
|
...commonSkillFields,
|
|
100
60
|
idempotencyKey,
|
|
101
|
-
input: modelingExecuteInput,
|
|
61
|
+
input: modelingExecuteInput.describe("Required new-model input. input.content is required; input.message can carry user or Agent supplemental information."),
|
|
102
62
|
}),
|
|
103
63
|
modeling_re_modeling: z.object({
|
|
104
64
|
...commonSkillFields,
|
|
105
65
|
accountId: z.number().describe("Product carbon account id"),
|
|
106
66
|
idempotencyKey,
|
|
107
|
-
input: reModelingInput.optional(),
|
|
67
|
+
input: reModelingInput.describe("Optional re-modeling input. Use input.content for updated product description and input.message for recalculation instructions.").optional(),
|
|
108
68
|
}),
|
|
109
69
|
modeling_update: z.object({
|
|
110
70
|
...commonSkillFields,
|
|
111
71
|
accountId: z.number().describe("Product carbon account id"),
|
|
112
72
|
idempotencyKey,
|
|
113
|
-
input: modelUpdateInput,
|
|
73
|
+
input: modelUpdateInput.describe("Emission source update input. Use input.content for the source change instruction and input.message for supplemental context."),
|
|
114
74
|
}),
|
|
115
75
|
modeling_detail: z.object({
|
|
116
76
|
sessionId,
|
|
117
77
|
projectId: z.number().optional(),
|
|
118
78
|
...traceFields,
|
|
119
79
|
accountId: z.number().describe("Product carbon account id"),
|
|
120
|
-
input: jsonObject.optional(),
|
|
80
|
+
input: jsonObject.describe("Optional detail query context.").optional(),
|
|
121
81
|
}),
|
|
122
82
|
report_generate: z.object({
|
|
123
83
|
...commonSkillFields,
|
|
124
84
|
accountId: z.number().describe("Product carbon account id"),
|
|
125
85
|
idempotencyKey,
|
|
126
|
-
input: reportGenerateInput.optional(),
|
|
86
|
+
input: reportGenerateInput.describe("Optional report generation input, such as reportName, standard, or message.").optional(),
|
|
127
87
|
}),
|
|
128
88
|
report_regenerate: z.object({
|
|
129
89
|
...commonSkillFields,
|
|
130
90
|
reportId: z.number().describe("Existing report id to regenerate"),
|
|
131
91
|
idempotencyKey,
|
|
132
|
-
input: reportGenerateInput.optional(),
|
|
92
|
+
input: reportGenerateInput.describe("Optional report regeneration input, such as reportName, standard, or message.").optional(),
|
|
133
93
|
}),
|
|
134
94
|
report_detail: z.object({
|
|
135
95
|
sessionId,
|
|
136
96
|
projectId: z.number().optional(),
|
|
137
97
|
...traceFields,
|
|
138
98
|
reportId: z.number().describe("Report id"),
|
|
139
|
-
input: jsonObject.optional(),
|
|
140
|
-
}),
|
|
141
|
-
analysis_run: z.object({
|
|
142
|
-
...commonSkillFields,
|
|
143
|
-
accountId: z.number().describe("Product carbon account id"),
|
|
144
|
-
input: analysisInput,
|
|
145
|
-
}),
|
|
146
|
-
factor_search: z.object({
|
|
147
|
-
sessionId,
|
|
148
|
-
projectId: z.number().optional(),
|
|
149
|
-
...traceFields,
|
|
150
|
-
accountId: z.number().optional(),
|
|
151
|
-
input: factorSearchInput,
|
|
152
|
-
}),
|
|
153
|
-
knowledge_search: z.object({
|
|
154
|
-
sessionId,
|
|
155
|
-
projectId: z.number().optional(),
|
|
156
|
-
...traceFields,
|
|
157
|
-
input: knowledgeSearchInput,
|
|
99
|
+
input: jsonObject.describe("Optional report detail query context.").optional(),
|
|
158
100
|
}),
|
|
159
101
|
};
|
|
160
102
|
export const descriptions = {
|
|
161
|
-
session_context: "Resolve session ownership and business context for an Agent session.",
|
|
162
|
-
project_memory_get: "Read project memory for the Agent session or project.",
|
|
163
|
-
project_memory_patch: "Patch project memory. Requires idempotencyKey.",
|
|
164
|
-
project_memory_compress: "Save compressed project memory. Requires idempotencyKey.",
|
|
165
|
-
modeling_preview: "Preview product carbon AI modeling before user confirmation.",
|
|
166
103
|
modeling_execute: "Create a new product carbon model from input.content. Use this only when the user wants a new model and no existing account should be reused. Calls /modeling/execute. Requires idempotencyKey and input.content.",
|
|
167
104
|
modeling_re_modeling: "Re-model an existing product carbon account from updated context. Use this when the user wants to redo or recalculate the whole model for an existing account. Calls /modeling/reModeling. Requires accountId and idempotencyKey.",
|
|
168
105
|
modeling_update: "Supplement emission sources on an existing product carbon account. Use this when the user wants to add or adjust materials, energy, packaging, transport, or other emission sources without recreating the whole model. Calls /modeling/update. Requires accountId and idempotencyKey.",
|
|
@@ -170,36 +107,8 @@ export const descriptions = {
|
|
|
170
107
|
report_generate: "Create a new product carbon report from an account. Requires accountId and idempotencyKey.",
|
|
171
108
|
report_regenerate: "Regenerate an existing product carbon report. Requires reportId and idempotencyKey.",
|
|
172
109
|
report_detail: "Get product carbon report detail and latest report URL.",
|
|
173
|
-
analysis_run: "Run product carbon data analysis, such as hotspot analysis.",
|
|
174
|
-
factor_search: "Search and match carbon emission factors for Agent modeling.",
|
|
175
|
-
knowledge_search: "Search carbon knowledge for Agent answers.",
|
|
176
110
|
};
|
|
177
111
|
export const toolRoutes = {
|
|
178
|
-
session_context: {
|
|
179
|
-
method: "POST",
|
|
180
|
-
path: apipath.SessionContext(),
|
|
181
|
-
bodyKind: "sessionContext",
|
|
182
|
-
},
|
|
183
|
-
project_memory_get: {
|
|
184
|
-
method: "POST",
|
|
185
|
-
path: apipath.ProjectMemoryGet(),
|
|
186
|
-
bodyKind: "agentSkill",
|
|
187
|
-
},
|
|
188
|
-
project_memory_patch: {
|
|
189
|
-
method: "POST",
|
|
190
|
-
path: apipath.ProjectMemoryPatch(),
|
|
191
|
-
bodyKind: "agentSkill",
|
|
192
|
-
},
|
|
193
|
-
project_memory_compress: {
|
|
194
|
-
method: "POST",
|
|
195
|
-
path: apipath.ProjectMemoryCompress(),
|
|
196
|
-
bodyKind: "agentSkill",
|
|
197
|
-
},
|
|
198
|
-
modeling_preview: {
|
|
199
|
-
method: "POST",
|
|
200
|
-
path: apipath.ModelingPreview(),
|
|
201
|
-
bodyKind: "agentSkill",
|
|
202
|
-
},
|
|
203
112
|
modeling_execute: {
|
|
204
113
|
method: "POST",
|
|
205
114
|
path: apipath.ModelingExecute(),
|
|
@@ -235,21 +144,6 @@ export const toolRoutes = {
|
|
|
235
144
|
path: apipath.ReportDetail(),
|
|
236
145
|
bodyKind: "agentSkill",
|
|
237
146
|
},
|
|
238
|
-
analysis_run: {
|
|
239
|
-
method: "POST",
|
|
240
|
-
path: apipath.AnalysisRun(),
|
|
241
|
-
bodyKind: "agentSkill",
|
|
242
|
-
},
|
|
243
|
-
factor_search: {
|
|
244
|
-
method: "POST",
|
|
245
|
-
path: apipath.FactorSearch(),
|
|
246
|
-
bodyKind: "agentSkill",
|
|
247
|
-
},
|
|
248
|
-
knowledge_search: {
|
|
249
|
-
method: "POST",
|
|
250
|
-
path: apipath.KnowledgeSearch(),
|
|
251
|
-
bodyKind: "agentSkill",
|
|
252
|
-
},
|
|
253
147
|
};
|
|
254
148
|
export function buildBody(route, args) {
|
|
255
149
|
if (route.bodyKind === "sessionContext") {
|
package/dist/tools.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"tools.js","sourceRoot":"","sources":["../src/tools.ts"],"names":[],"mappings":"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
|
|
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