Architecture 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. A complete list of the registered MCP primitives and other protocol features demonstrated can be found in the Server Features
Add this skill
npx mdskills install modelcontextprotocol/serversComprehensive test server demonstrating all MCP protocol features with excellent setup docs
1# Everything MCP Server2**[Architecture](docs/architecture.md)3| [Project Structure](docs/structure.md)4| [Startup Process](docs/startup.md)5| [Server Features](docs/features.md)6| [Extension Points](docs/extension.md)7| [How It Works](docs/how-it-works.md)**8910This 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.1112## Tools, Resources, Prompts, and Other Features1314A complete list of the registered MCP primitives and other protocol features demonstrated can be found in the [Server Features](docs/features.md) document.1516## Usage with Claude Desktop (uses [stdio Transport](https://modelcontextprotocol.io/specification/2025-03-26/basic/transports#stdio))1718Add to your `claude_desktop_config.json`:1920```json21{22 "mcpServers": {23 "everything": {24 "command": "npx",25 "args": [26 "-y",27 "@modelcontextprotocol/server-everything"28 ]29 }30 }31}32```3334## Usage with VS Code3536For quick installation, use of of the one-click install buttons below...3738[](https://insiders.vscode.dev/redirect/mcp/install?name=everything&config=%7B%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22-y%22%2C%22%40modelcontextprotocol%2Fserver-everything%22%5D%7D) [](https://insiders.vscode.dev/redirect/mcp/install?name=everything&config=%7B%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22-y%22%2C%22%40modelcontextprotocol%2Fserver-everything%22%5D%7D&quality=insiders)3940[](https://insiders.vscode.dev/redirect/mcp/install?name=everything&config=%7B%22command%22%3A%22docker%22%2C%22args%22%3A%5B%22run%22%2C%22-i%22%2C%22--rm%22%2C%22mcp%2Feverything%22%5D%7D) [](https://insiders.vscode.dev/redirect/mcp/install?name=everything&config=%7B%22command%22%3A%22docker%22%2C%22args%22%3A%5B%22run%22%2C%22-i%22%2C%22--rm%22%2C%22mcp%2Feverything%22%5D%7D&quality=insiders)4142For manual installation, you can configure the MCP server using one of these methods:4344**Method 1: User Configuration (Recommended)**45Add the configuration to your user-level MCP configuration file. Open the Command Palette (`Ctrl + Shift + P`) and run `MCP: Open User Configuration`. This will open your user `mcp.json` file where you can add the server configuration.4647**Method 2: Workspace Configuration**48Alternatively, you can add the configuration to a file called `.vscode/mcp.json` in your workspace. This will allow you to share the configuration with others.4950> For more details about MCP configuration in VS Code, see the [official VS Code MCP documentation](https://code.visualstudio.com/docs/copilot/customization/mcp-servers).5152#### NPX5354```json55{56 "servers": {57 "everything": {58 "command": "npx",59 "args": ["-y", "@modelcontextprotocol/server-everything"]60 }61 }62}63```6465## Running from source with [HTTP+SSE Transport](https://modelcontextprotocol.io/specification/2024-11-05/basic/transports#http-with-sse) (deprecated as of [2025-03-26](https://modelcontextprotocol.io/specification/2025-03-26/basic/transports))6667```shell68cd src/everything69npm install70npm run start:sse71```7273## Run from source with [Streamable HTTP Transport](https://modelcontextprotocol.io/specification/2025-03-26/basic/transports#streamable-http)7475```shell76cd src/everything77npm install78npm run start:streamableHttp79```8081## Running as an installed package82### Install83```shell84npm install -g @modelcontextprotocol/server-everything@latest85````8687### Run the default (stdio) server88```shell89npx @modelcontextprotocol/server-everything90```9192### Or specify stdio explicitly93```shell94npx @modelcontextprotocol/server-everything stdio95```9697### Run the SSE server98```shell99npx @modelcontextprotocol/server-everything sse100```101102### Run the streamable HTTP server103```shell104npx @modelcontextprotocol/server-everything streamableHttp105```106107
Full transparency — inspect the skill content before installing.