hello
Test connectivity to the SAP OData v4 server and return a greeting response.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||
Implementation Reference
- src/index.ts:11-25 (registration)Registration of the 'hello' tool using server.tool() with an empty schema object. The handler returns a static 'Hello from TRBK MCP 🚀' text response.
// existing hello tool server.tool( "hello", {}, async () => { return { content: [ { type: "text", text: "Hello from TRBK MCP 🚀" } ] }; } ); - src/index.ts:15-24 (handler)The async handler function for the 'hello' tool. It takes no parameters (empty schema) and returns a content array with a static text message.
async () => { return { content: [ { type: "text", text: "Hello from TRBK MCP 🚀" } ] }; } - src/index.ts:14-14 (schema)The schema for the 'hello' tool is an empty object ({}), meaning it accepts no input parameters.
{},