manatee-jokes
4.0
The Manatee Jokes MCP Server offers a collection of manatee-themed jokes with various tools for interaction.
The Manatee Jokes MCP Server is a fun and engaging platform designed to provide users with a collection of manatee-themed jokes. It is equipped with features that allow users to easily access and interact with the jokes, whether they are looking for a random joke, a specific joke by ID, or want to explore the entire collection. The server is CORS-enabled, ensuring accessibility from different web environments. With a high popularity score and reliable performance, the server promises a delightful experience for users seeking humor.
Features
- CORS-Enabled: Allows access from different web environments.
- Random Joke: Retrieve a random manatee joke.
- Get Joke by ID: Access a specific joke using its ID.
- Find All Jokes: Explore the entire collection of jokes.
MCP Tools
- Random Joke Tool: Retrieve a random manatee joke.
- Get Joke by ID Tool: Retrieve a specific joke using its ID.
- Find All Jokes Tool: Access the complete collection of jokes.
Usage with Different Platforms
web
fetch('https://manateejokes.example.com/api/random')
.then(response => response.json())
.then(data => console.log(data.joke));
nodejs
const fetch = require('node-fetch');
fetch('https://manateejokes.example.com/api/random')
.then(response => response.json())
.then(data => console.log(data.joke));