server-nothing
by hesreallyhim·★ 7·Score 32
A minimalist test MCP server with no capabilities, designed for validating client/server setup without functionality.
Overview
server-nothing is a deliberate minimal implementation of the MCP protocol that provides zero tools, resources, or prompts. Its sole purpose is to serve as a foundation for developers to test their MCP client connections without any distractions from actual functionality. It acts as the antithesis of servers that implement every possible capability, instead providing a blank canvas for developers to build upon incrementally.
Try asking AI
After installing, here are 5 things you can ask your AI assistant:
When to choose this
When you're developing a new MCP client or server and need to test basic protocol connections before adding actual functionality.
When NOT to choose this
When you need any actual capabilities or functionality from your MCP server - this server intentionally provides no tools or resources.
Comparable tools
Installation
npm install @modelcontextprotocol/server-nothingAdd to your Claude Desktop config.json:
{
"mcpServers": {
"nothing": {
"command": "npx",
"args": ["@modelcontextprotocol/server-nothing"]
}
}
}FAQ
- What is the purpose of a server with no capabilities?
- It allows developers to test MCP client/server connections without being distracted by actual functionality, providing a clean slate for incremental development.
- How do I add functionality to this server?
- This server serves as a template - you would fork it and add your own tools, resources, and prompts according to the MCP specification.
Compare server-nothing with
Last updated · Auto-generated from public README + GitHub signals.