hello-mcp
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@hello-mcpuse the hello tool"
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
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
uvas the Python package manager
Related MCP server: Hello World MCP Server
Prerequisites
Local Development
Install Dependencies
uv syncRun the Server
uv run mcp_server.pyThe 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-mcpUsing Docker Compose:
podman-compose upNote: 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.jsonWindows:
%APPDATA%\Claude\claude_desktop_config.jsonLinux:
~/.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 fileTools
hello
Returns a greeting message.
Example:
@server.tool()
def hello():
"""Returns a greeting"""
return "Hello from MCP 👋"License
MIT
Maintenance
Resources
Unclaimed servers have limited discoverability.
Looking for Admin?
If you are the server author, to access and configure the admin panel.
Tools
Related MCP Servers
- Alicense-qualityCmaintenanceA simple MCP server that generates multi-language greetings and provides server information using the FastMCP framework.Last updatedMIT
- -licenseCquality-maintenanceA 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 updated112
- AlicenseCqualityDmaintenanceA 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 updated112MIT
- Flicense-qualityDmaintenanceA 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
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.
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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