From 79c4e510384c7961b4502f894878ddab39ac7165 Mon Sep 17 00:00:00 2001 From: cliffhall Date: Sat, 13 Dec 2025 14:56:36 -0500 Subject: [PATCH] Update README.md and doc in server/index.ts --- src/everything/README.md | 3 +++ src/everything/server/index.ts | 2 +- 2 files changed, 4 insertions(+), 1 deletion(-) diff --git a/src/everything/README.md b/src/everything/README.md index fc7aa6c3..8109e444 100644 --- a/src/everything/README.md +++ b/src/everything/README.md @@ -9,6 +9,9 @@ This MCP server attempts to exercise all the features of the MCP protocol. It is not intended to be a useful server, but rather a test server for builders of MCP clients. It implements prompts, tools, resources, sampling, and more to showcase MCP capabilities. +## Tools, Resources, Prompts, and Other Features + +A complete list of the registered MCP primitives and other protocol features demonstrated can be found in the [Server Features](docs/features.md) document. ## Usage with Claude Desktop (uses [stdio Transport](https://modelcontextprotocol.io/specification/2025-03-26/basic/transports#stdio)) diff --git a/src/everything/server/index.ts b/src/everything/server/index.ts index f2e0a44f..7cd15125 100644 --- a/src/everything/server/index.ts +++ b/src/everything/server/index.ts @@ -17,7 +17,7 @@ export type ServerFactoryResponse = { }; /** - * `ServerInstance` factory + * Server Factory * * This function initializes a `McpServer` with specific capabilities and instructions, * registers tools, resources, and prompts, and configures resource subscription handlers.