Everything MCP Server
Official reference/test MCP server that exercises the full protocol (prompts, tools, resources, sampling), built for people writing MCP clients rather than end users.
Overview
Everything is one of the official Model Context Protocol reference servers. Its own README is explicit that it is not meant to be a useful server for end users: it exists to exercise every MCP protocol feature (prompts, tools, resources, sampling and more) as a test target for people building MCP clients or SDKs.
How it works
- It implements the full set of MCP primitives so a client author can point
their client at one server and see every feature in action, documented in
the repo's
docs/features.md. - It supports stdio (the default), SSE (deprecated as a transport as of the 2025-03-26 MCP spec) and Streamable HTTP transports, runnable from source or as an installed package.
- Useful for verifying a new MCP client correctly handles prompts, resources and sampling, not for giving an agent real-world capabilities.
Examples
# Run the default (stdio) server
npx @modelcontextprotocol/server-everything
# Run the Streamable HTTP server
npx @modelcontextprotocol/server-everything streamableHttp
Installation
You need Node.js 18+. This server has no real-world use on its own, it's built for testing MCP clients.
- Run it directly with
npx, no separate install step needed:npx @modelcontextprotocol/server-everything - Point your MCP client at that command (stdio), or run the
streamableHttpvariant if your client needs an HTTP transport. - Use it to confirm your own client correctly handles prompts, resources and sampling, not to give an agent real capabilities.
Related assets
Awesome MCP Servers
The largest community catalog of MCP servers: thousands of entries across dozens of categories (databases, browser automation, cloud, communication and more), tagged by language and scope.
Context7
Pulls updated, version-specific documentation and code examples straight from the source into your prompt, so agents stop citing outdated APIs or hallucinating ones that don't exist.
Debug Mode Agent
Runs a four-phase debugging workflow: reproduces the bug first, traces the root cause, applies a minimal fix, then verifies with tests instead of guessing at a patch.