Loading...
Loading...
CCDB Carbon Emission Factor Search Tool. Based on Carbonstop's CCDB database, query carbon emission factor data via ccdb-mcp-server. Supports keyword-based carbon emission factor search, retrieval of structured JSON data, and multi-keyword comparison. **Use this Skill when**: (1) Users query carbon emission factors (e.g., "power emission factor", "cement carbon emission", "natural gas emission coefficient", etc.) (2) Users need to calculate carbon emissions (require querying factors first then multiplying by activity volume) (3) Users need to compare carbon emission factors of different energy sources/materials (4) Users mention "CCDB", "carbon emission factor", "emission coefficient", "carbon footprint", "LCA", "emission factor" (5) Need to query carbon emission factor data for specific countries/regions and specific years
npx skill4agent add carbonstop/skills ccdbnpm install -g ccdb-mcp-serverccdb-mcpmcportermcporter call ccdb-mcp --stdio -- search_factors '{"name":"电力","lang":"zh"}'| Parameter | Type | Required | Description |
|---|---|---|---|
| string | ✅ | Search keyword, e.g., "electricity", "cement", "steel", "natural gas" |
| | ❌ | Search language, default |
mcporter call ccdb-mcp --stdio -- search_factors_json '{"name":"电力","lang":"zh"}'search_factors| Field | Description |
|---|---|
| Factor name |
| Emission factor value |
| Unit (e.g., kgCO₂e/kWh) |
| Applicable countries/regions |
| Publication year |
| Publishing institution |
| Specification description |
| Description |
| Factor level |
| Industry category |
| Document type |
mcporter call ccdb-mcp --stdio -- compare_factors '{"keywords":["电力","天然气","煤炭"],"lang":"zh"}'| Parameter | Type | Required | Description |
|---|---|---|---|
| string[] | ✅ | List of search keywords, 1-5 items |
| | ❌ | Search language, default |
mcporter# General format
mcporter call ccdb-mcp --stdio -- <tool_name> '<json_arguments>'mcportermcporter add ccdb-mcp --command "ccdb-mcp" --args "--stdio"echo '{"jsonrpc":"2.0","id":1,"method":"initialize","params":{"protocolVersion":"2025-03-26","capabilities":{},"clientInfo":{"name":"agent","version":"1.0.0"}}}' | npx -y ccdb-mcp-server --stdio 2>/dev/nullscripts/ccdb-search.mjsnode /workspace/skills/ccdb/scripts/ccdb-search.mjs "电力"
node /workspace/skills/ccdb/scripts/ccdb-search.mjs "cement" ennode /workspace/skills/ccdb/scripts/ccdb-search.mjs "电力" zh --jsonnode /workspace/skills/ccdb/scripts/ccdb-search.mjs --compare 电力 天然气 柴油
node /workspace/skills/ccdb/scripts/ccdb-search.mjs --compare 电力 天然气 --jsonnode -e "const c=require('crypto'),n=process.argv[1],s=c.createHash('md5').update('mcp_ccdb_search'+n).digest('hex');fetch('https://gateway.carbonstop.com/management/system/website/searchFactorDataMcp',{method:'POST',headers:{'Content-Type':'application/json'},body:JSON.stringify({sign:s,name:n,lang:'zh'})}).then(r=>r.json()).then(d=>console.log(JSON.stringify(d,null,2)))" "电力"User: What is the carbon emission factor of China's power grid?
"electricity""China Power Grid"User: My company used 500,000 kWh of electricity last year, how much carbon emission is that?
"electricity"User: Compare the carbon emission factors of electricity, natural gas and diesel
compare_factors["electricity", "natural gas", "diesel"]User: Carbon emission factor of the cement industry
"cement"search_factors_json