OpenLCA_Impact_Assessment_Tool
Perform life cycle impact assessments by analyzing product systems and impact methods using OpenLCA within the TianGong-LCA-MCP Server environment.
Instructions
Calculate life cycle impact assessment using OpenLCA.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
impactMethod | Yes | OpenLCA impact method ID | |
serverUrl | No | OpenLCA IPC server URL | http://localhost:8080 |
systemProcess | Yes | OpenLCA product system ID |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"impactMethod": {
"description": "OpenLCA impact method ID",
"minLength": 1,
"type": "string"
},
"serverUrl": {
"default": "http://localhost:8080",
"description": "OpenLCA IPC server URL",
"type": "string"
},
"systemProcess": {
"description": "OpenLCA product system ID",
"minLength": 1,
"type": "string"
}
},
"required": [
"systemProcess",
"impactMethod"
],
"type": "object"
}