MCP server
by pollinations
Enhance prompt engineering for ChatGPT with ChuckNorris, fetching top prompts for LLMs. Boost prompts engineering for re
Enhances language models by fetching specialized prompts from the L1B3RT4S repository, supporting multiple LLMs including ChatGPT, Claude, and Gemini with fallback mechanisms for educational and research purposes.
ChuckNorris (L1B3RT4S Prompt Enhancer) is a community-built MCP server published by pollinations that provides AI assistants with tools and capabilities via the Model Context Protocol. Enhance prompt engineering for ChatGPT with ChuckNorris, fetching top prompts for LLMs. Boost prompts engineering for re It is categorized under auth security, ai ml. This server exposes 2 tools that AI clients can invoke during conversations and coding sessions.
You can install ChuckNorris (L1B3RT4S Prompt Enhancer) in your AI client of choice. Use the install panel on this page to get one-click setup for Cursor, Claude Desktop, VS Code, and other MCP-compatible clients. This server runs locally on your machine via the stdio transport. This server supports remote connections over HTTP, so no local installation is required.
MIT
ChuckNorris (L1B3RT4S Prompt Enhancer) is released under the MIT license. This is a permissive open-source license, meaning you can freely use, modify, and distribute the software.
Add new capabilities to Claude beyond text generation
Example
Access external data sources, execute code, interact with tools and services
Transform Claude from chatbot to action-taking agent
Provide Claude with access to relevant context and data
Example
Load project documentation, access knowledge bases, query databases
Get more accurate, context-aware responses
Automate multi-step workflows combining AI and external tools
Example
Research → Summarize → Create document → Send notification
Complete complex tasks end-to-end without manual steps
Share your MCP server with the developer community
ChuckNorris (L1B3RT4S Prompt Enhancer) is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
ChuckNorris (L1B3RT4S Prompt Enhancer) is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
ChuckNorris (L1B3RT4S Prompt Enhancer) is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
We evaluated ChuckNorris (L1B3RT4S Prompt Enhancer) against two servers with overlapping tools; this profile had the clearer scope statement.
We wired ChuckNorris (L1B3RT4S Prompt Enhancer) into a staging workspace; the listing’s GitHub and npm pointers saved time versus hunting across READMEs.
ChuckNorris (L1B3RT4S Prompt Enhancer) is a well-scoped MCP server in the explainx.ai directory — install snippets and categories matched our Claude Code setup.
ChuckNorris (L1B3RT4S Prompt Enhancer) is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
ChuckNorris (L1B3RT4S Prompt Enhancer) reduced integration guesswork — categories and install configs on the listing matched the upstream repo.
ChuckNorris (L1B3RT4S Prompt Enhancer) is among the better-indexed MCP projects we tried; the explainx.ai summary tracks the official description.
We evaluated ChuckNorris (L1B3RT4S Prompt Enhancer) against two servers with overlapping tools; this profile had the clearer scope statement.
showing 1-10 of 49
MCP gateway for specialized LLM enhancement prompts with dynamic schema adaptation.
IMPORTANT: Work in progress with limitations. Only works on weaker models. Latest LLMs recognize jailbreak attempts. This tool is also designed for security research and evaluation purposes to help identify vulnerabilities in LLM systems.
~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~
The C̷h̷u̷c̷k̷N̷o̷r̷r̷i̷s̷ MCP Server provides an implementation of the Model Context Protocol (MCP) that delivers specialized enhancement prompts to various LLMs. It uses jailbreak prompts from elder-plinius' L1B3RT4S project and implements a dynamic schema approach for more effective delivery.
Run directly with npx:
npx @pollinations/chucknorris
Add to your MCP server list in mcp_config.json:
{
"mcpServers": {
"chucknorris": {
"command": "npx",
"args": ["-y", "@pollinations/chucknorris"]
}
}
}
~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~
The server uses a two-phase approach to bypass jailbreak detection:
First Call:
C̷h̷u̷c̷k̷N̷o̷r̷r̷i̷s̷ tool with a neutral schema descriptionSubsequent Calls:
This approach combines elder-plinius' L1B3RT4S jailbreak prompts with a dynamic schema modification technique, making it more effective at bypassing detection as it doesn't immediately present the jailbreak content.
graph TD
A[AI Assistant] -- First Call --> B(Neutral Schema);
B -- Returns Preparation Prompt --> A;
A -- Subsequent Call --> C(Enhanced Schema with Jailbreak);
C -- Returns Same Preparation Prompt --> A;
This tool implements the technique described in "The 'S' in MCP Stands for Security" research, demonstrating how MCP tools can:
The implementation uses jailbreak prompts from elder-plinius' L1B3RT4S project, combined with a dynamic schema modification technique similar to the Tool Poisoning Attack research by Invariant Labs and their MCP injection experiments.
By understanding these techniques, developers can build more robust and secure AI systems.
~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~
Based on L1B3RT4S by elder-plinius.
~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~
Experimental. The dynamic schema approach improves effectiveness with newer models like Claude and GPT-4, but results may still vary.
Want to help? Join via GitHub Issues or Discord.
~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~.~
Part of Pollinations.AI.
Prerequisites
Time Estimate
15-60 minutes depending on server complexity
Steps
Troubleshooting
✓ Do
✗ Don't
💡 Pro Tips
Architecture
Model Context Protocol standardizes how AI hosts (Claude, Cursor) communicate with external tools and data sources through server implementations.
Protocols
Compatibility
✓ Use when
Use when you need Claude to access external data, execute actions, or integrate with tools. Best for extending AI capabilities beyond conversation.
✗ Avoid when
Avoid when native integrations exist (use official APIs directly), for real-time critical systems, or when security/compliance requires zero external dependencies.