mcp server
A Model Context Protocol server providing utility tools for development and testing, offering functionalities like personalized greetings, random card drawing, and datetime formatting with an extensible architecture.
A Model Context Protocol server providing utility tools for development and testing, offering functionalities like personalized greetings, random card drawing, and datetime formatting with an extensible architecture.
name
(string, required): Name of the recipientExample:
{"name": "John"} -> "? Hello John! Welcome to the MCP server!"
card
Example:
{} -> "? Drew card: A♠️" (random from 52 cards)
datetime
timeZone
(string, optional, default: "UTC"): Timezone identifierlocale
(string, optional, default: "en-US"): Locale for formattingExample:
{"timeZone": "America/New_York", "locale": "es-ES"} ->
"? domingo, 24 de marzo de 2024, 15:25:25 hora de verano del este"
calculator
expression
(string, required): Mathematical expression to evaluateprecision
(number, optional, default: 2): Number of decimal placesExample:
{"expression": "2 + 2 * 3", "precision": 2} -> "? Result: 8.00"
{"expression": "(15 / 2) % 2", "precision": 3} -> "? Result: 1.500"
passwordGen
length
(number, optional, default: 16): Password lengthincludeNumbers
(boolean, optional, default: true): Include numbersincludeSymbols
(boolean, optional, default: true): Include special symbolsincludeUppercase
(boolean, optional, default: true): Include uppercase lettersExample:
{"length": 12, "includeSymbols": true} -> "? Generated: Kj2$mP9&vN4x"
{"length": 8, "includeNumbers": false} -> "? Generated: KjMpNvXw"
qrGen
text
(string, required): Text or URL to encodesize
(number, optional, default: 200): Size in pixelsdark
(string, optional, default: "#000000"): Color for dark moduleslight
(string, optional, default: "#ffffff"): Color for light modules// Basic Usage
{"text": "https://github.com/nekzus"} ->
"? QR Code generated successfully!
Properties:
• Content: https://github.com/nekzus
• Size: 200px
• Dark Color: #000000
• Light Color: #ffffff
QR Code (Data URL):
data:image/png;base64,..."
// Custom Size and Colors
{
"text": "Hello World!",
"size": 300,
"dark": "#FF0000",
"light": "#FFFFFF"
} ->
"? QR Code generated successfully!
Properties:
• Content: Hello World!
• Size: 300px
• Dark Color: #FF0000
• Light Color: #FFFFFF
QR Code (Data URL):
data:image/png;base64,..."
Note: The QR code is returned as a Data URL that can be used directly in HTML <img>
tags or converted to a file.
value
(number, required): Value to convertfrom
(string, required): Source unitto
(string, required): Target unitingredient
(string, optional): Ingredient for accurate conversionSupported Units:
Volume Units:
- ml (milliliters)
- l (liters)
- cup (US cup = 236.588 ml)
- tbsp (US tablespoon = 14.787 ml)
- tsp (US teaspoon = 4.929 ml)
- floz (US fluid ounce = 29.574 ml)
Weight Units:
- g (grams)
- kg (kilograms)
- oz (ounces = 28.350 g)
- lb (pounds = 453.592 g)
Ingredient Densities:
- water (1.000 g/ml)
- milk (1.030 g/ml)
- flour (0.593 g/ml)
- sugar (0.845 g/ml)
- brown_sugar (0.721 g/ml)
- salt (1.217 g/ml)
- butter (0.911 g/ml)
- oil (0.918 g/ml)
- honey (1.420 g/ml)
- maple_syrup (1.370 g/ml)
Examples:
// Volume to Volume
{"value": 1, "from": "cup", "to": "ml"} ->
"⚖️ 1 cup = 236.59 ml"
// Weight to Weight
{"value": 500, "from": "g", "to": "lb"} ->
"⚖️ 500 g = 1.10 lb"
// Volume to Weight (requires ingredient)
{"value": 1, "from": "cup", "to": "g", "ingredient": "flour"} ->
"⚖️ 1 cup of flour = 140.30 g"
To use this server with the Claude Desktop app, add the following configuration to the "mcpServers" section of your claude_desktop_config.json
:
{
"mcpServers": {
"nekzus": {
"transport": "stdio",
"command": "npx",
"args": [
"-y",
"@nekzus/mcp-server"
]
}
}
}
{
"mcpServers": {
"nekzus": {
"transport": "stdio",
"command": "docker",
"args": ["run", "-i", "--rm", "--init", "nekzus/mcp-server"]
}
}
}
The configuration file is typically located at:
- Windows: %APPDATA%/claude-desktop/claude_desktop_config.json
- macOS: ~/Library/Application Support/claude-desktop/claude_desktop_config.json
- Linux: ~/.config/claude-desktop/claude_desktop_config.json
# Install dependencies
npm install
# Run in development mode
npm run dev
# Format code
npm run format
# Lint code
npm run lint
# Run tests
npm run test
# Build
npm run build
Build the Docker image:
# Build the image
docker build -t nekzus/mcp-server .
# Run the container
docker run -i --rm --init nekzus/mcp-server
git checkout -b feature/amazing-feature
)npm run commit
)git push origin feature/amazing-feature
)This MCP server is licensed under the MIT License. This means you are free to use, modify, and distribute the software, subject to the terms and conditions of the MIT License. For more details, please see the LICENSE file in the project repository.
? nekzus
Give a ⭐️ if this project helped you!