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

* Updated architecture.md

* Refactor/renamed sampling-request.ts to get-sampling-request.ts

* In tools/index.ts
  - sorted presenation order
This commit is contained in:
cliffhall
2025-12-10 16:58:25 -05:00
parent 7acadf4ac9
commit 48bf94a728
4 changed files with 16 additions and 19 deletions

View File

@@ -12,7 +12,7 @@ const GetSumSchema = z.object({
const name = "get-sum";
const config = {
title: "Get Sum Tool",
description: "Gets the sum of two numbers",
description: "Returns the sum of two numbers",
inputSchema: GetSumSchema,
};