jokeapi-v2

jokeapi-v2

3.9

The JokeAPI v2 MCP server provides a flexible and accessible way to retrieve jokes in various formats without requiring authentication.

The JokeAPI v2 MCP server is a powerful REST API designed to provide uniformly formatted jokes. This service is accessible without the need for API tokens, memberships, registrations, or payments. The API is highly flexible, offering a variety of filters to help you obtain the specific jokes you need. It supports multiple response formats, including JSON, XML, YAML, and plain text, making it versatile for various applications.

Features

  • Uniformly Formatted Jokes: Retrieve jokes that are consistently formatted for easy integration into your applications.
  • Flexible Filtering: Utilize a wide range of filters to tailor the jokes to your specific needs, ensuring you get exactly what you're looking for.
  • Multiple Formats: Choose from JSON, XML, YAML, or plain text formats to suit your application's requirements.
  • No Authentication Required: Access the jokes without the hassle of setting up API tokens or user accounts.
  • Free Access: Enjoy the service without any cost, making it accessible for both hobbyists and professionals alike.

Usage with Different Platforms

python

python
import requests

response = requests.get('https://v2.jokeapi.dev/joke/Any')
print(response.json())

javascript

javascript
fetch('https://v2.jokeapi.dev/joke/Any')
  .then(response => response.json())
  .then(data => console.log(data));