Skip to main content
Glama
BrightLin

mcp-server-say-hello

by BrightLin

mcp-server-say-hello

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

A
license - permissive license
-
quality - not tested
C
maintenance

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

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

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/BrightLin/mcp-server-say-hello-py'

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