mcp-unitconv

mtthomas8/mcp-unitconv
★ 0 stars TypeScript Code/Dev Tools Updated today
MCP server exposing unit conversion (length, mass, time, temperature) as a tool
View on GitHub → 🔍 Audit Wallet Slippage →

Quick Install

Copy the config for your editor. Some servers may need additional setup — check the README.

Add to claude_desktop_config.json:

{
  "mcpServers": {
    "mcp-unitconv": {
      "command": "npx",
      "args": [
        "-y",
        "mtthomas8/mcp-unitconv"
      ]
    }
  }
}

README Excerpt

An MCP server that exposes unit conversion as a tool, so an assistant can convert between units without guessing arithmetic. Supports length, mass, time and temperature. ```bash npm install npm run build ``` ```json { "mcpServers": { "unitconv": { "command": "node", "args": ["dist/server.js"] } } } ```