Skip to main content
Glama
Jackdrakes

hello-mcp

by Jackdrakes

Hello MCP Server

A simple Model Context Protocol (MCP) server that provides a greeting tool.

Features

  • Simple MCP server using FastMCP

  • Dockerized with Podman support

  • Uses uv as the Python package manager

Related MCP server: Hello World MCP Server

Prerequisites

  • Python 3.12+

  • uv - Python package manager

  • Podman (optional, for containerized deployment)

Local Development

Install Dependencies

uv sync

Run the Server

uv run mcp_server.py

The server will start and wait for MCP protocol messages via stdio.

Docker/Podman Deployment

Build the Image

podman build -t hello-mcp .

Run the Container

Interactive mode (recommended for MCP servers):

podman run -it --name hello-mcp hello-mcp

Using Docker Compose:

podman-compose up

Note: MCP servers communicate via stdio, so they must run in interactive mode (-it). Running in detached mode (-d) will cause the container to exit immediately.

Connecting to Claude Desktop

To use this MCP server with Claude Desktop, you need to add it to your Claude Desktop configuration.

Step 1: Locate Claude Desktop Config File

The configuration file location depends on your operating system:

  • macOS: ~/Library/Application Support/Claude/claude_desktop_config.json

  • Windows: %APPDATA%\Claude\claude_desktop_config.json

  • Linux: ~/.config/Claude/claude_desktop_config.json

Step 2: Add Server Configuration

Open (or create) the claude_desktop_config.json file and add the following configuration:

Option A: Local Development (using uv)

{
  "mcpServers": {
    "hello-mcp": {
      "command": "uv",
      "args": ["run", "mcp_server.py"],
      "cwd": "/absolute/path/to/hello-mcp"
    }
  }
}

Replace /absolute/path/to/hello-mcp with the absolute path to this project directory.

Option B: Using Podman Container

{
  "mcpServers": {
    "hello-mcp": {
      "command": "podman",
      "args": [
        "run",
        "-i",
        "--rm",
        "hello-mcp"
      ]
    }
  }
}

Note: Make sure the container image is built before using this configuration.

Step 3: Restart Claude Desktop

After updating the configuration file, restart Claude Desktop to apply the changes.

Step 4: Verify Connection

Once connected, you can ask Claude to use the hello tool. For example:

  • "Use the hello tool from the hello-mcp server"

  • "Call the hello function"

Example Configuration File

See claude-desktop-config.json.example for a complete example configuration.

Project Structure

hello-mcp/
├── mcp_server.py          # Main MCP server implementation
├── pyproject.toml         # Project dependencies and metadata
├── Dockerfile             # Container image definition
├── docker-compose.yml     # Docker Compose configuration
├── .dockerignore          # Files to exclude from Docker build
└── README.md             # This file

Tools

hello

Returns a greeting message.

Example:

@server.tool()
def hello():
    """Returns a greeting"""
    return "Hello from MCP 👋"

License

MIT

F
license - not found
-
quality - not tested
D
maintenance

Maintenance

Maintainers
Response time
Release cycle
Releases (12mo)
Commit activity

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Servers

  • -
    license
    C
    quality
    -
    maintenance
    A simple boilerplate MCP server that provides a basic greeting tool for demonstration purposes. Serves as a starting template for developers to quickly create and deploy custom MCP servers.
    Last updated
    1
    30
  • A
    license
    C
    quality
    D
    maintenance
    A simple MCP server that provides a basic greeting tool for saying hello with customizable names. Serves as a boilerplate template for developers to quickly create and deploy new MCP servers.
    Last updated
    1
    30
    MIT
  • F
    license
    -
    quality
    D
    maintenance
    A demonstration MCP server that runs over HTTP with streamable transport, providing a simple greeting tool for testing MCP client-server communication. Built with FastMCP framework for educational purposes in learning MCP server development.
    Last updated

View all related MCP servers

Related MCP Connectors

  • A very simple remote MCP server that greets you, with a custom icon.

  • An MCP server that let you interact with Cycloid.io Internal Development Portal and Platform

  • A basic MCP server to operate on the Postman API.

View all MCP Connectors

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Jackdrakes/hello-mcp'

If you have feedback or need assistance with the MCP directory API, please join our Discord server