# Greeting & Utilities

Send friendly greetings in multiple languages, run quick calculations, and get the current time for any timezone. Generate images from text prompts to visualize ideas. Boost development with a ready-…

## Quick Start

```bash
# Connect this server (installs CLI if needed)
npx -y @smithery/cli@latest mcp add devbrother2024/my-mcp-server-250925

# Browse available tools
npx -y @smithery/cli@latest tool list devbrother2024/my-mcp-server-250925

# Get full schema for a tool
npx -y @smithery/cli@latest tool get devbrother2024/my-mcp-server-250925 greeting

# Call a tool
npx -y @smithery/cli@latest tool call devbrother2024/my-mcp-server-250925 greeting '{}'
```

## Direct MCP Connection

Endpoint: `https://my-mcp-server-250925--devbrother2024.run.tools`

## Tools (7)

- `greeting` — Friendly greeting tool that can greet users in various languages
- `add` — Addition calculator that adds two numbers
- `subtract` — Subtraction calculator that subtracts second number from first number
- `multiply` — Multiplication calculator that multiplies two numbers
- `divide` — Division calculator that divides first number by second number
- `time` — Get current time in specified timezone
- `generate-image` — Generate an image from text prompt using AI

```bash
# Get full input/output schema for a tool
npx -y @smithery/cli@latest tool get devbrother2024/my-mcp-server-250925 <tool-name>
```

## Resources

- `server://greeting-mcp-server/spec` — Server specification and available tools information

## Prompts (1)

- `code-review` (code) — Generate a comprehensive code review prompt for the provided code

---

Source: https://github.com/devbrother2024/my-mcp-server-250925
