Command Palette

Search for a command to run...

UnylyUnyly
Browse all

Server Say Hello

FreeNot checked

MCP server that provides a greeting tool to say hello to users.

GitHubEmbed

About

MCP server that provides a greeting tool to say hello to users.

README

MCP Protocol-compliant greeting service providing standardized greeting tool interfaces.

Features

  • Personalized greeting generation
  • Compliant with MCP v1.2 protocol specifications
  • Multi-environment deployment support (uvx/docker/pip)
  • Complete tool registration specifications

Tool Registration

Tool List

  1. say_hello
    • Description: Greeting tool for users

    • Input Parameters:

      {
        "name": "username"
      }
      
    • Success Response:

      {
        "type": "text",
        "text": "Hello {username}!"
      }
      

API Reference

endpoint: POST /say_hello

request parameters:

{
  "name": "username"
}

success response:

{
  "message": "Hello {username}!"
}

Integrated configuration

VS Code configuration

{
  "mcp": {
    "servers": {
      "say_hello": {
        "command": "uvx",
        "args": ["mcp-server-say-hello"]
      }
    }
  }
}

or locally (if you installed the package using pip install or pip install -e .):

{
  "mcp": {
    "servers": {
      "say_hello": {
        "command": "/path/to/python",
        "args": ["-m", "mcp_server_say_hello"]
      }
    }
  }
}

Note: command use the python bin path or "python" if you have it in your PATH

Claude Desktop or Trae CN Desktop configuration

use python

{
  "mcpServers": {
    "say_hello": {
      "command": "python",
      "args": ["-m", "mcp_server_say_hello"]
    }
  }
}

or uvx

{
  "mcpServers": {
    "say_hello": {
      "command": "uvx",
      "args": ["mcp-server-say-hello"]
    }
  }
}

AIGC prompt example

image

from github.com/BrightLin/mcp-server-say-hello-py

Install Server Say Hello in Claude Desktop, Claude Code & Cursor

Recommended · one command, every IDE
unyly install mcp-server-say-hello

Installs into Claude Desktop, Claude Code, Cursor & VS Code — handles npx, uvx and build-from-source repos for you.

First time? Get the CLI: curl -fsSL https://unyly.org/install | sh

Or configure manually

Run in your terminal:

claude mcp add mcp-server-say-hello -- uvx mcp-server-say-hello

FAQ

Is Server Say Hello MCP free?

Yes, Server Say Hello MCP is free — one-click install via Unyly at no cost.

Does Server Say Hello need an API key?

No, Server Say Hello runs without API keys or environment variables.

Is Server Say Hello hosted or self-hosted?

A hosted option is available: Unyly runs the server in the cloud, no local setup required.

How do I install Server Say Hello in Claude Desktop, Claude Code or Cursor?

Open Server Say Hello on unyly.org, pick your client tab (Claude Desktop, Claude Code, Cursor) and press Install — the config is generated automatically, no JSON editing.

Related MCPs

Compare Server Say Hello with

Not sure what to pick?

Find your stack in 60 seconds

Author?

Embed badge for your README

Browse similar

All development MCPs