This MCP server implements all features of the Model Context Protocol, serving as a test environment for MCP client developers. It demonstrates prompts, tools, resources, sampling, and other capabilities to help with client development and testing.
To use the Everything MCP Server, you need to install it via npm:
npm install -g @modelcontextprotocol/server-everything
Alternatively, you can run it directly without installation using npx:
npx -y @modelcontextprotocol/server-everything
Add the server to your Claude Desktop configuration by editing the claude_desktop_config.json
file:
{
"mcpServers": {
"everything": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-everything"
]
}
}
}
The server provides several tools to test MCP client functionality:
Returns the input message back to the client.
message
(string){
"message": "Hello MCP World!"
}
Performs addition of two numbers.
a
(number)b
(number){
"a": 5,
"b": 10
}
Demonstrates progress notifications for operations that take time.
duration
(number, default: 10) - seconds to runsteps
(number, default: 5) - progress notification steps{
"duration": 20,
"steps": 10
}
Tests LLM sampling capabilities of the MCP protocol.
prompt
(string) - text prompt for the LLMmaxTokens
(number, default: 100) - token generation limit{
"prompt": "Write a short poem about technology",
"maxTokens": 200
}
Returns a test image in base64 format.
Displays all environment variables for debugging.
Demonstrates content annotations with metadata.
messageType
(enum: "error" | "success" | "debug")includeImage
(boolean, default: false){
"messageType": "success",
"includeImage": true
}
The server provides 100 test resources that can be accessed with these URIs:
Even-numbered resources (plaintext):
test://static/resource/2
test://static/resource/4
...
Odd-numbered resources (binary):
test://static/resource/1
test://static/resource/3
...
Resource features include:
Basic prompt without arguments:
simple_prompt
Advanced prompt with arguments:
complex_prompt temperature=0.7 style="creative"
Required arguments:
temperature
(number)Optional arguments:
style
(string)The server generates random-level log messages every 15 seconds for testing notification handling. These appear in the following format:
{
"method": "notifications/message",
"params": {
"level": "info",
"data": "Info-level message"
}
}
You can use these notifications to test your client's ability to handle server events.
There are two ways to add an MCP server to Cursor. The most common way is to add the server globally in the ~/.cursor/mcp.json
file so that it is available in all of your projects.
If you only need the server in a single project, you can add it to the project instead by creating or adding it to the .cursor/mcp.json
file.
To add a global MCP server go to Cursor Settings > MCP and click "Add new global MCP server".
When you click that button the ~/.cursor/mcp.json
file will be opened and you can add your server like this:
{
"mcpServers": {
"cursor-rules-mcp": {
"command": "npx",
"args": [
"-y",
"cursor-rules-mcp"
]
}
}
}
To add an MCP server to a project you can create a new .cursor/mcp.json
file or add it to the existing one. This will look exactly the same as the global MCP server example above.
Once the server is installed, you might need to head back to Settings > MCP and click the refresh button.
The Cursor agent will then be able to see the available tools the added MCP server has available and will call them when it needs to.
You can also explictly ask the agent to use the tool by mentioning the tool name and describing what the function does.