chuck-norris
4.0
The 'chuck-norris' MCP server provides a collection of Chuck Norris jokes and facts in JSON format for entertainment purposes.
The 'chuck-norris' MCP server is a platform designed to deliver a curated collection of Chuck Norris jokes and facts. It is ideal for developers looking to integrate humor into their applications or for users seeking entertainment. The server offers various endpoints to access jokes, including random joke retrieval, category listing, and search functionality. This ensures a seamless experience for accessing and enjoying Chuck Norris humor.
Features
- Random Joke Retrieval: Access a random Chuck Norris joke with optional category filtering.
- Categories Listing: Retrieve a list of available joke categories.
- Search Jokes: Perform a free text search to find specific jokes.
MCP Tools
- /jokes/random: Retrieves a random Chuck Norris joke in JSON format. Optional category parameter available.
- /jokes/categories: Retrieves a list of available joke categories.
- /jokes/search: Allows free text search within the joke collection.
Usage with Different Platforms
curl
bash
curl -X GET 'http://chuck-norris-mcp-server.com/jokes/random'
python
python
import requests
response = requests.get('http://chuck-norris-mcp-server.com/jokes/random')
print(response.json())
javascript
javascript
fetch('http://chuck-norris-mcp-server.com/jokes/random')
.then(response => response.json())
.then(data => console.log(data));