hello-world
Greet users by name to demonstrate basic MCP server tool functionality for AI assistant integration.
Instructions
Say hello to the user
Input Schema
TableJSON Schema
| Name | Required | Description | Default |
|---|---|---|---|
| name | Yes | The name of the user |
Implementation Reference
- src/index.ts:19-30 (handler)The async handler function that implements the 'hello-world' tool logic, greeting the user by name.
async ({ name }) => { const response = `Hello ${name}`; return { content: [ { type: "text", text: response, }, ], }; } - src/index.ts:16-18 (schema)Zod schema defining the input parameter 'name' for the hello-world tool.
{ name: z.string().describe("The name of the user"), }, - src/index.ts:13-31 (registration)Registration of the 'hello-world' tool using server.tool(), including name, description, schema, and handler.
server.tool( "hello-world", "Say hello to the user", { name: z.string().describe("The name of the user"), }, async ({ name }) => { const response = `Hello ${name}`; return { content: [ { type: "text", text: response, }, ], }; } );