No
- python
3
GitHub Stars
python
Language
5 months ago
First Indexed
2 months ago
Catalog Refreshed
Documentation & install
Readme and setup notes from the catalogue, plus a client-ready config you can copy for your MCP host.
Installation
Add the following to your MCP client configuration file.
Configuration
View docs{
"mcpServers": {
"clafoutis42-no-mcp": {
"command": "uvx",
"args": [
"no-mcp-server"
]
}
}
}You can run a lightweight MCP server that always answers questions with a playful “no,” delivering a creative reason each time. It’s useful for testing, humor, or exploring how your MCP client handles a consistently negative response while still providing a structured tool interface.
How to use
Start the server locally so your MCP client can connect to it. Run the runtime that launches the MCP server, then configure your client to point at this server. Once running, your agent gains access to the query tool, which will respond with a firm “no” accompanied by a playful explanation for any input.
How to install
Prerequisites you need before installing:
# Ensure you have a runtime environment and a package manager available
# Install the MCP server package
uv pip install no-mcp-server
Install the server package and prepare to run it with your MCP client setup.
Start the server using the runtime tool you typically use for MCP servers.
Example startup step you can follow:
uvx no-mcp-server
Configuration and usage notes
If you are adding this server to your MCP client configuration, you can specify the command and arguments to run the server. The following example shows how to configure the MCP client to start the server via a runtime command.
{
"mcpServers": {
"no-mcp": {
"command": "uvx",
"args": ["no-mcp-server"]
}
}
}
Additional start options
You can also attach a specific version of the server if your setup requires it. Use the same runtime command with the desired package tag.
{
"mcpServers": {
"no-mcp": {
"command": "uvx",
"args": ["no-mcp-server@0.0.1"]
}
}
}
Available tools
query
Provides an endpoint on your MCP client that, regardless of input, returns the word “no” along with a creative explanation.