A simple MCP server that provides conversion between hexadecimal and decimal numbers. Mainly solving the problem of LLM hallucinations.
hex_to_dec
: Convert hexadecimal string to decimal numberdec_to_hex
: Convert decimal number to hexadecimal string
npm install && npm run build
Add the following configuration:
{
"mcpServers": {
"hex2dec": {
"command": "node",
"args": [
"/path/hex2dec-mcp/build/index.js"
]
}
}
}
For more information about MCP servers, refer to the Model Context Protocol documentation.