say_hello
Greet a person by name using the GCP MCP server, which manages Google Cloud Platform resources through natural language commands in Claude Desktop without manual credential setup.
Instructions
Say hello to a person.
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes |
Implementation Reference
- src/gcp_mcp/server.py:22-25 (handler)The async handler function for the 'say_hello' tool, decorated with @mcp.tool() which registers it with the MCP server. It takes a string name and returns a personalized greeting.@mcp.tool() async def say_hello(name: str) -> str: """Say hello to a person.""" return f"Hello, {name}!"