# utility-converter [Health: Active]

**Category:** 💻 Developer Tools  
**Repository:** https://github.com/punchfan01/utility-converter  
**GitHub Stars:** 0  
**Views:** 0  
**Installs:** 0  
**Upvotes:** 0  
**Directory Page:** https://allmcps.com/mcp/utility-converter

## Description
7 utility tools: exchange rate, UUID, hash, Base64, timestamp, calculator, unit conversion.

## Claude Desktop Quick Installation
Remote MCP endpoint (confidence: high). Install path detected from listing signals. Add as a URL/SSE server in your client:

```json
"mcpServers": {
  "utility-converter": {
    "url": "http://localhost:8000/mcp"
  }
}
```

## Documentation & README

# Utility Converter MCP Server

A simple remote MCP server (Streamable HTTP, no authentication) providing 7 everyday utility tools.

## Tools

- `get_exchange_rate` — Latest currency exchange rates (Frankfurter API)
- `generate_uuid` — Generate random UUID v4 strings
- `hash_text` — MD5 / SHA1 / SHA256 / SHA512 text hashing
- `encode_decode_base64` — Base64 encode / decode
- `convert_timestamp` — Unix timestamp ↔ human-readable datetime
- `calculate` — Safe arithmetic expression evaluator
- `convert_units` — Length / weight / temperature unit conversion

## Run

```bash
pip install -r requirements.txt
python server.py
```

Endpoint: `http://localhost:8000/mcp`

