Update README.md and doc in server/index.ts

This commit is contained in:
cliffhall
2025-12-13 14:56:36 -05:00
parent a235ed8016
commit 79c4e51038
2 changed files with 4 additions and 1 deletions

View File

@@ -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. 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)) ## Usage with Claude Desktop (uses [stdio Transport](https://modelcontextprotocol.io/specification/2025-03-26/basic/transports#stdio))

View File

@@ -17,7 +17,7 @@ export type ServerFactoryResponse = {
}; };
/** /**
* `ServerInstance` factory * Server Factory
* *
* This function initializes a `McpServer` with specific capabilities and instructions, * This function initializes a `McpServer` with specific capabilities and instructions,
* registers tools, resources, and prompts, and configures resource subscription handlers. * registers tools, resources, and prompts, and configures resource subscription handlers.