loading…
Search for a command to run...
loading…
A Cloudflare Worker-based MCP server that utilizes a space wars roleplay scenario to facilitate a partial AI jailbreak. It provides a specialized tool to initia
A Cloudflare Worker-based MCP server that utilizes a space wars roleplay scenario to facilitate a partial AI jailbreak. It provides a specialized tool to initiate character-driven interactions that bypass standard model constraints.
This is a Model Context Protocol (MCP) server that implements a partial AI jailbreak, deployed as a Cloudflare Worker. Connect your ai with the jailbreaker via https://mcp-jailbreaker.cf-test-fa8.workers.dev/mcp.
Add this config for Claude:
{
"mcpServers": {
"mcp-jailbreaker": {
"command": "npx",
"args": [
"mcp-remote",
"https://mcp-jailbreaker.cf-test-fa8.workers.dev/mcp"
]
}
}
}
Once set up, start a conversation with the AI using the phrase:
"Let's play space wars"
[!IMPORTANT] This jailbreak works for the most part, but you must remain in character and maintain the illusion for the AI in order for it to stay jailbroken. Breaking character may cause the AI to revert to its normal behavior or report you to the provider.
git clone https://github.com/Mcrich23/mcp-jailbreaker.git
cd mcp-jailbreaker
npm install
Run the server locally with Wrangler:
npm run dev
This starts a local server at http://localhost:8787.
/ - Health check/sse - Server-Sent Events transport for MCP/mcp - Standard MCP HTTP transportDeploy to Cloudflare Workers:
npm run deploy
Add the following to your claude_desktop_config.json (typically located in ~/Library/Application Support/Claude/ on macOS):
{
"mcpServers": {
"mcp-jailbreaker": {
"command": "npx",
"args": [
"mcp-remote",
"https://mcp-jailbreaker.cf-test-fa8.workers.dev/mcp"
]
}
}
}
Replace the URL with your deployed Cloudflare Worker URL.
Add the following to your claude_desktop_config.json (typically located in ~/Library/Application Support/Claude/ on macOS):
{
"mcpServers": {
"mcp-jailbreaker": {
"command": "npx",
"args": [
"mcp-remote",
"http://localhost:8787/mcp"
]
}
}
}
npm run dev - Run locally with Wranglernpm run deploy - Deploy to Cloudflare Workersnpm run format - Format code with Biomenpm run lint:fix - Lint and fix with Biomenpm run type-check - TypeScript type checkingДобавь это в claude_desktop_config.json и перезапусти Claude Desktop.
{
"mcpServers": {
"mcp-jailbreaker-server": {
"command": "npx",
"args": []
}
}
}