# My First MCP Server

Provide a simple and easy-to-run MCP server implementation that supports stdio and SSE transports. Enable seamless integration with MCP clients using Node.js or Docker environments. Facilitate quick …

## Quick Start

```bash
# Connect this server (installs CLI if needed)
npx -y @smithery/cli@latest mcp add JHSeo-git/my-first-mcp-2

# Browse available tools
npx -y @smithery/cli@latest tool list JHSeo-git/my-first-mcp-2

# Get full schema for a tool
npx -y @smithery/cli@latest tool get JHSeo-git/my-first-mcp-2 echo

# Call a tool
npx -y @smithery/cli@latest tool call JHSeo-git/my-first-mcp-2 echo '{}'
```

## Tools (3)

- `echo`
- `calculate-bmi`
- `fetch-weather`

```bash
# Get full input/output schema for a tool
npx -y @smithery/cli@latest tool get JHSeo-git/my-first-mcp-2 <tool-name>
```

## Prompts (1)

- `echo` (message)

---

Source: https://github.com/JHSeo-git/my-first-mcp | License: MIT
