Unit Converter Mcp — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited Unit Converter Mcp (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Unit conversion utilities that provide precise conversions between different units of measurement.
| Tool | Purpose | Supported Units |
|---|---|---|
list_supported_units | List all supported units for each type | All conversion types |
convert_temperature | Convert temperature between units | Celsius, Fahrenheit, Kelvin |
convert_angle | Convert angle between units | Degrees, Radians, Arcmin, Arcsec, Turns, Gons |
convert_length | Convert length/distance between units | Meter, Kilometer, Foot, Inch, Mile, etc. |
convert_area | Convert area between units | Square Meter, Acre, Hectare, Square Foot, etc. |
convert_mass | Convert mass between units | Kilogram, Gram, Pound, Ounce, Ton |
convert_volume | Convert volume between units | Liter, Gallon, Cup, Fluid Ounce, etc. |
convert_time | Convert time between units | Seconds, Minutes, Hours, Days, Years, etc. |
convert_energy | Convert energy between units | Joule, Kilowatt Hour, Calorie, BTU, etc. |
convert_force | Convert force between units | Newton, Pound Force, Kilogram Force, etc. |
convert_pressure | Convert pressure between units | Pascal, Bar, PSI, Atmosphere, etc. |
convert_power | Convert power between units | Watt, Horsepower, BTU per hour, etc. |
convert_speed | Convert speed between units | m/s, mph, km/h, knots, Mach, etc. |
convert_computer_data | Convert computer storage between units | Bytes, KB, MB, GB, TB, etc. |
convert_density | Convert density between units | kg/L, g/cm³, lb/gal, g/L, etc. |
Here are some example prompts to get you started:
convert 0 celsius to fahrenheit
what's my weight in kg? I'm 205lbs
convert 3.14159 radians to degrees
convert the speed of a snail to Mach
how many floppy disks do you need to store 1TB?
how much area would 1,000 mattresses take up in acres
how many non-stop days would it take to watch Game of Thrones?Add this to your Claude Desktop configuration file:
macOS: ~/Library/Application Support/Claude/claude_desktop_config.json Windows: %APPDATA%/Claude/claude_desktop_config.json
{
"mcpServers": {
"unit-converter": {
"command": "uvx",
"args": ["unit-converter-mcp"]
}
}
}convert_temperatureConvert temperature between Celsius, Fahrenheit, and Kelvin.
Parameters:
value (float): Temperature value to convertfrom_unit (str): Source unit (celsius, fahrenheit, kelvin)to_unit (str): Target unit (celsius, fahrenheit, kelvin)Example:
{
"name": "convert_temperature",
"arguments": {
"value": 100,
"from_unit": "celsius",
"to_unit": "fahrenheit"
}
}convert_lengthConvert length between various units including metric and imperial systems.
Parameters:
value (float): Length value to convertfrom_unit (str): Source unit (meter, kilometer, centimeter, millimeter, inch, foot, yard, mile)to_unit (str): Target unit (meter, kilometer, centimeter, millimeter, inch, foot, yard, mile)Example:
{
"name": "convert_length",
"arguments": {
"value": 1,
"from_unit": "meter",
"to_unit": "foot"
}
}convert_massConvert mass between various units including metric, imperial, and specialized units.
Parameters:
value (float): Mass value to convertfrom_unit (str): Source unit (kilogram, gram, pound, ounce, tonne, carat, stone, etc.)to_unit (str): Target unit (kilogram, gram, pound, ounce, tonne, carat, stone, etc.)Supported Units:
Example:
{
"name": "convert_mass",
"arguments": {
"value": 1,
"from_unit": "kilogram",
"to_unit": "pound"
}
}convert_volumeConvert volume between various units including metric and imperial systems.
Parameters:
value (float): Volume value to convertfrom_unit (str): Source unit (liter, milliliter, gallon, quart, pint, cup, fluid_ounce)to_unit (str): Target unit (liter, milliliter, gallon, quart, pint, cup, fluid_ounce)Example:
{
"name": "convert_volume",
"arguments": {
"value": 1,
"from_unit": "liter",
"to_unit": "gallon"
}
}convert_timeConvert time between various units from sub-seconds to millennia.
Parameters:
value (float): Time value to convertfrom_unit (str): Source unit (seconds, minutes, hours, days, weeks, months, years, etc.)to_unit (str): Target unit (seconds, minutes, hours, days, weeks, months, years, etc.)Example:
{
"name": "convert_time",
"arguments": {
"value": 1,
"from_unit": "hours",
"to_unit": "minutes"
}
}convert_energyConvert energy between various units including metric, electrical, heat, nutrition, and particle physics systems.
Parameters:
value (float): Energy value to convertfrom_unit (str): Source unit (joule, kilowatt hour, calorie, Btu, etc.)to_unit (str): Target unit (joule, kilowatt hour, calorie, Btu, etc.)Supported Units:
Example:
{
"name": "convert_energy",
"arguments": {
"value": 1,
"from_unit": "kilowatt hour",
"to_unit": "joule"
}
}convert_forceConvert force between various units including metric and imperial systems.
Parameters:
value (float): Force value to convertfrom_unit (str): Source unit (newtons, pounds force, kilograms force, dynes, kilonewtons, kips, etc.)to_unit (str): Target unit (newtons, pounds force, kilograms force, dynes, kilonewtons, kips, etc.)Supported Units:
Example:
{
"name": "convert_force",
"arguments": {
"value": 100,
"from_unit": "newtons",
"to_unit": "pounds force"
}
}convert_densityConvert density between various units including metric, imperial, and specialized systems.
Parameters:
value (float): Density value to convertfrom_unit (str): Source unit (kilograms per liter, grams per cubic centimeter, pounds per gallon, etc.)to_unit (str): Target unit (kilograms per liter, grams per cubic centimeter, pounds per gallon, etc.)Supported Units:
Example:
{
"name": "convert_density",
"arguments": {
"value": 1,
"from_unit": "kilograms per liter",
"to_unit": "grams per cubic centimeter"
}
}list_supported_unitsList all supported units for each conversion type.
Parameters: None
Example:
{
"name": "list_supported_units",
"arguments": {}
}convert_angleConvert angle between degrees, radians, and other angular units.
Parameters:
value (float): Angle value to convertfrom_unit (str): Source unit (degrees, radians, arcmin, arcsec, turns, gons)to_unit (str): Target unit (degrees, radians, arcmin, arcsec, turns, gons)Example:
{
"name": "convert_angle",
"arguments": {
"value": 3.14159,
"from_unit": "radians",
"to_unit": "degrees"
}
}convert_areaConvert area between various units including metric and imperial systems.
Parameters:
value (float): Area value to convertfrom_unit (str): Source unit (acre, are, hectare, square centimeter, square foot, square inch, square kilometer, square meter, square mile, square millimeter, square yard)to_unit (str): Target unit (acre, are, hectare, square centimeter, square foot, square inch, square kilometer, square meter, square mile, square millimeter, square yard)Example:
{
"name": "convert_area",
"arguments": {
"value": 1,
"from_unit": "hectare",
"to_unit": "acre"
}
}convert_computer_dataConvert computer storage between various units from bits to exabytes.
Parameters:
value (float): Computer storage value to convertfrom_unit (str): Source unit (bits, bytes, kilobytes, megabytes, gigabytes, terabytes, petabytes, exabytes)to_unit (str): Target unit (bits, bytes, kilobytes, megabytes, gigabytes, terabytes, petabytes, exabytes)Example:
{
"name": "convert_computer_data",
"arguments": {
"value": 1,
"from_unit": "gigabytes",
"to_unit": "megabytes"
}
}convert_pressureConvert pressure between various units including metric, imperial, and specialized systems.
Parameters:
value (float): Pressure value to convertfrom_unit (str): Source unit (pascal, hectopascal, kilopascal, megapascal, bar, atmosphere, centimeters of water, inches of water, feet of water, meters of water, millimeters of mercury, inches of mercury, kilogram force per square centimeter, newtons per square centimeter, newtons per square millimeter, psi, psf)to_unit (str): Target unit (pascal, hectopascal, kilopascal, megapascal, bar, atmosphere, centimeters of water, inches of water, feet of water, meters of water, millimeters of mercury, inches of mercury, kilogram force per square centimeter, newtons per square centimeter, newtons per square millimeter, psi, psf)Example:
{
"name": "convert_pressure",
"arguments": {
"value": 1,
"from_unit": "atmosphere",
"to_unit": "psi"
}
}convert_powerConvert power between various units including mechanical, electrical, and thermal systems.
Parameters:
value (float): Power value to convertfrom_unit (str): Source unit (Btu per hour, foot pound‑force per second, ton of refrigeration, calorie per hour, kilocalorie per hour, horsepower, horsepower (metric), kilogram‑force meter per second, watt, kilowatt, megawatt, gigawatt, terawatt, petawatt)to_unit (str): Target unit (Btu per hour, foot pound‑force per second, ton of refrigeration, calorie per hour, kilocalorie per hour, horsepower, horsepower (metric), kilogram‑force meter per second, watt, kilowatt, megawatt, gigawatt, terawatt, petawatt)Example:
{
"name": "convert_power",
"arguments": {
"value": 1,
"from_unit": "horsepower",
"to_unit": "kilowatt"
}
}convert_speedConvert speed between various units including metric, imperial, and specialized systems.
Parameters:
value (float): Speed value to convertfrom_unit (str): Source unit (centimeters per minute, centimeters per second, feet per hour, feet per minute, feet per second, inches per minute, inches per second, kilometers per hour, kilometers per second, knots, Mach (ISA sea level), speed of sound, meters per hour, meters per minute, meters per second, miles per hour, miles per minute, miles per second, yards per hour, yards per minute, yards per second, speed of light)to_unit (str): Target unit (centimeters per minute, centimeters per second, feet per hour, feet per minute, feet per second, inches per minute, inches per second, kilometers per hour, kilometers per second, knots, Mach (ISA sea level), speed of sound, meters per hour, meters per minute, meters per second, miles per hour, miles per minute, miles per second, yards per hour, yards per minute, yards per second, speed of light)Example:
{
"name": "convert_speed",
"arguments": {
"value": 60,
"from_unit": "miles per hour",
"to_unit": "meters per second"
}
}# Clone the repository
git clone https://github.com/zazencodes/unit-converter-mcp
cd unit-converter-mcp
# Install dependencies
uv sync --dev
# Run tests
uv run pytest
# Run linting
uv run ruff check --fix
uv run ruff format
# Type checking
uv run mypy src/{
"mcpServers": {
"unit-converter-dev": {
"command": "uv",
"args": [
"--directory",
"<path_to_your_repo>/unit-converter-mcp",
"run",
"unit-converter-mcp"
]
}
}
}Note: Replace <path_to_your_repo>/unit-converter-mcp with the absolute path to your cloned repository.
# Build package
uv build
# Test installation
uv run --with dist/*.whl unit-converter-mcpversion number in pyproject.toml and src/__init__.py.CHANGELOG.md for the release.git diff context. Update the @CHANGELOG.md for the latest release.
List all significant changes, bug fixes, and new features.
Here's the git diff:
[GIT_DIFF]For exploring and/or developing this server, use the MCP Inspector npm utility:
# Install MCP Inspector
npm install -g @modelcontextprotocol/inspector
# Run local development server with the inspector
npx @modelcontextprotocol/inspector uv run unit-converter-mcp
# Run PyPI production server with the inspector
npx @modelcontextprotocol/inspector uvx unit-converter-mcpMIT License - see LICENSE file for details.
Contributions are welcome! Please feel free to submit a Pull Request.
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.