Skip to content

Commit 8c1b9d6

Browse files
updated readme
1 parent e198e36 commit 8c1b9d6

File tree

1 file changed

+11
-5
lines changed

1 file changed

+11
-5
lines changed

src/everything/README.md

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
# Everything MCP Server
1+
# Everything MCP Server
22

33
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.
44

@@ -15,7 +15,7 @@ This MCP server attempts to exercise all the features of the MCP protocol. It is
1515
2. `add`
1616
- Adds two numbers together
1717
- Inputs:
18-
- `a` (number): First number
18+
- `a` (number): First number
1919
- `b` (number): Second number
2020
- Returns: Text result of the addition
2121

@@ -27,7 +27,7 @@ This MCP server attempts to exercise all the features of the MCP protocol. It is
2727
- Returns: Completion message with duration and steps
2828
- Sends progress notifications during execution
2929

30-
4. `sampleLLM`
30+
4. `sampleLLM`
3131
- Demonstrates LLM sampling capability using MCP sampling feature
3232
- Inputs:
3333
- `prompt` (string): The prompt to send to the LLM
@@ -39,17 +39,23 @@ This MCP server attempts to exercise all the features of the MCP protocol. It is
3939
- No inputs required
4040
- Returns: Base64 encoded PNG image data
4141

42+
6. `printEnv`
43+
- Prints all environment variables
44+
- Useful for debugging MCP server configuration
45+
- No inputs required
46+
- Returns: JSON string of all environment variables
47+
4248
### Resources
4349

4450
The server provides 100 test resources in two formats:
45-
- Even numbered resources:
51+
- Even numbered resources:
4652
- Plaintext format
4753
- URI pattern: `test://static/resource/{even_number}`
4854
- Content: Simple text description
4955

5056
- Odd numbered resources:
5157
- Binary blob format
52-
- URI pattern: `test://static/resource/{odd_number}`
58+
- URI pattern: `test://static/resource/{odd_number}`
5359
- Content: Base64 encoded binary data
5460

5561
Resource features:

0 commit comments

Comments
 (0)