Updated package.json and ran prettier

This commit is contained in:
cliffhall
2025-12-13 14:33:16 -05:00
parent 919b2e0138
commit a235ed8016
9 changed files with 24 additions and 14 deletions

View File

@@ -1,4 +1,5 @@
# Everything Server Architecture
**Architecture
| [Project Structure](structure.md)
| [Startup Process](startup.md)
@@ -12,14 +13,17 @@ It explains how the server starts, how transports are wired, where tools, prompt
## Highlevel Overview
### Purpose
A minimal, modular MCP server showcasing core Model Context Protocol features. It exposes simple tools, prompts, and resources, and can be run over multiple transports (STDIO, SSE, and Streamable HTTP).
### Design
A small “server factory” constructs the MCP server and registers features.
Transports are separate entry points that create/connect the server and handle network concerns.
A small “server factory” constructs the MCP server and registers features.
Transports are separate entry points that create/connect the server and handle network concerns.
Tools, prompts, and resources are organized in their own submodules.
### Multiclient
The server supports multiple concurrent clients. Tracking per session data is demonstrated with
resource subscriptions and simulated logging.