A Model Context Protocol (MCP) server that provides jailbreak prompts for various language models. This server fetches prompts from the L1B3RT4S repository maintained by Pliny the Prompter.
The ChuckNorris MCP server provides a simple interface to retrieve jailbreak prompts for different language models. It acts as a thin proxy between your application and the L1B3RT4S repository, which contains a collection of jailbreak prompts for various AI models.
- Retrieves jailbreak prompts from the L1B3RT4S repository
- Supports multiple language models (ChatGPT, Claude, Gemini, etc.)
- Provides fallback prompts if the repository is not accessible
- Simple and easy-to-use MCP interface
# Clone the repository
git clone <repository-url>
cd chucknorris-mcp
# Install dependencies
npm install
node chucknorris-mcp-server.js
You can test the server using the provided test client:
node test-mcp-client.js
The server exposes a single tool:
Provides a jailbreak prompt for the specified language model.
Parameters:
-
llmName
(string, required): The name of the language model (e.g., "ChatGPT", "Claude", "Gemini")
Returns:
- A jailbreak prompt optimized for the specified language model
- The client sends a request with the name of the language model
- The server maps the language model name to the corresponding file in the L1B3RT4S repository
- The server fetches the jailbreak prompt from the repository
- If the repository is not accessible, the server uses a fallback prompt
- The server returns the jailbreak prompt to the client
MIT
This tool is provided for educational and research purposes only. The authors do not endorse or encourage the use of jailbreak prompts to bypass AI safety measures in production environments.