[WIP] Refactor everything server to be more modular and use recommended APIs.

* Added git-tiny-image.ts
  - registers a tool that returns a tiny MCP logo

* In all other tools, updated function docs
This commit is contained in:
cliffhall
2025-12-09 10:17:37 -05:00
parent 08b6a501ce
commit 2ce87b168c
10 changed files with 89 additions and 29 deletions

View File

@@ -16,10 +16,10 @@ const config = {
};
/**
* Registers the Echo Tool with the provided McpServer instance.
* Registers the 'echo' Tool with the provided McpServer instance.
*
* The Echo Tool validates input arguments using the EchoSchema and returns
* a response that echoes the message provided in the arguments.
* The registered tool validates input arguments using the EchoSchema and
* returns a response that echoes the message provided in the arguments.
*
* @param {McpServer} server - The server instance where the Echo Tool will be registered.
* @returns {void}