Skip to main content
Glama
yychentw

Climbing Grade Converter MCP Server

by yychentw

πŸ§—β€β™‚οΈ Climbing Grade Converter MCP Server

A specialized Model Context Protocol (MCP) server that enables LLMs (like Claude) to accurately convert climbing grades across different rating systems using a data-driven approach.

πŸ› οΈ Tech Stack

  • Python 3.11+

  • FastMCP (MCP Python SDK)

  • Pydantic (Data Validation)

  • uv (High-performance Python package & environment manager)

Related MCP server: SkillMesh

πŸš€ Quick Start (Linux/WSL)

1. Prerequisites
Ensure you have uv installed in your Linux distribution:

curl -LsSf https://astral.sh/uv/install.sh | sh

2. Installation
Clone the repository and sync dependencies:

git clone https://github.com/yychentw/free-climbing-grade-converter-mcp.git
cd free_climbing_grade_converter_mcp
uv sync

3. Verification
Test the server logic manually in your terminal:

uv run main.py

βš™οΈ Configuration for Claude Desktop

To use this tool in Claude Desktop (Windows) via WSL, add the following entry to your claude_desktop_config.json (Note: Replace /home/user/... with the absolute path to your project directory in WSL.):

{
  "mcpServers": {
    "climbing-converter": {
      "command": "wsl",
      "args": [
        "-d", "Ubuntu", 
        "-e", "bash", "-l", "-c", 
        "cd /home/user/free_climbing_grade_converter_mcp && uv run main.py"
      ]
    }
  }
}

πŸ“– Usage Examples

Once connected, you can ask Claude:

  • "I just climbed a 6a+ in France. What is that in YDS?"

  • "Convert V3 to the French grading system."

  • "What climbing systems do you currently support?"

πŸ“‚ Project Structure

  • main.py: The core MCP server logic and tool definitions.

  • climbing_grades.json: The source-of-truth database for grade mappings.

  • pyproject.toml: Project metadata and dependency management.

Available Tools

1 tool
convert_climbing_grade_toolD
ParametersJSON Schema
NameRequiredDescriptionDefault
gradeYes
to_systemYes
from_systemYes

Output Schema

ParametersJSON Schema
NameRequiredDescription
noteYes
gradeYes
systemYes

TDQS

D1/5.0
Behavior1/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

Tool has no description.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness1/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Tool has no description.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness1/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Tool has no description.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters1/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Tool has no description.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose1/5

Does the description clearly state what the tool does and how it differs from similar tools?

Tool has no description.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines1/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

Tool has no description.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections.

  1. 1 tool updatev0.1.0
    • First observedconvert_climbing_grade_tool

TDQS

D1.9/5.0

Scored across 1 tool

Disambiguation5/5

With only a single tool, there is no ambiguity between tools. The tool's purpose is clear from its name.

Naming Consistency4/5

The tool name follows a verb_noun pattern, but the 'tool' suffix is slightly redundant. Still, it is consistent as the only tool.

Tool Count4/5

One tool for a climbing grade converter is arguably well-scoped, though it feels minimal for a full-featured server.

Completeness3/5

The tool covers the core conversion operation, but with no description or additional tools, it's unclear if it supports multiple grading systems or validation, leaving potential gaps.

Maintenance

ActivityInactive
ResponsivenessNo issues

Related MCP Connectors

Related MCP Servers

  • A
    license
    Not graded
    quality
    D
    maintenance
    SkillMesh is a retrieval router for MCP/LLM tool catalogs. It selects top-K relevant expert cards instead of loading every tool, reducing prompt size, by improving tool selection, and lowering token cost. Supports Claude MCP, Codex skills, and OpenAI-style function schemas.
    7
    MIT
  • A
    license
    Not graded
    quality
    C
    maintenance
    Verified unit conversion and dimensional analysis for AI agents. 190+ units, 31 domain formulas (clinical, physics, aerospace, SRE), physical constants with uncertainty propagation. Refuses invalid conversions structurally: the tool that won't convert mg to mL and knows the difference between torque and energy.
    AGPL 3.0