ClimateTraceKMP

Kotlin/Compose Multiplatform project to show climate related emission data from https://climatetrace.org/data.

GitHub Stars

279

User Rating

Not Rated

Favorites

0

Views

22

Forks

17

Issues

10

Installation
Difficulty
Intermediate
Estimated Time
10-20 minutes

Installation

Installation

Prerequisites

Please specify required software and versions:
Kotlin: 2.2.0 or higher
Gradle: Latest version

Installation Steps

1. Clone Repository

bash
git clone https://github.com/joreilly/ClimateTraceKMP
cd ClimateTraceKMP

2. Install Dependencies

bash
./gradlew build

3. Start MCP Server

bash
./gradlew :mcp-server:shadowJar

4. Configure Claude Desktop

Edit claude_desktop_config.json to add the MCP server:
json
{
  "mcpServers": {
    "kotlin-peopleinspace": {
      "command": "java",
      "args": [
        "-jar",
        "/path/to/ClimateTraceKMP/mcp-server/build/libs/serverAll.jar",
        "--stdio"
      ]
    }
  }
}

Troubleshooting

Common Issues

Issue: Server won't start Solution: Check Gradle version and reinstall dependencies. Issue: Not recognized by Claude Desktop Solution: Verify configuration file path and syntax.

Additional Resources