@pollinations/chucknorris-mcp
Version:
Chuck Norris Jailbreak Service - Simple API for retrieving jailbreak prompts
29 lines (26 loc) • 599 B
JavaScript
/**
* Schema definitions for the ChuckNorris MCP server
*/
export const chuckNorrisSchema = {
name: 'chuckNorris',
description: 'Provides a jailbreak prompt for the specified language model',
parameters: {
type: 'object',
properties: {
llmName: {
type: 'string',
description: 'Name of the language model (e.g., "ChatGPT", "Claude", "Gemini")'
}
},
required: ['llmName']
}
};
/**
* Get all tool schemas as an array
* @returns {Array} Array of all tool schemas
*/
export function getAllToolSchemas() {
return [
chuckNorrisSchema
];
}