random-famous-quotes
The Random Famous Quotes MCP server provides access to a collection of quotes from famous personalities and popular movies.
The Random Famous Quotes MCP server is designed to offer a simple and efficient way to access a wide range of quotes from famous personalities and popular movies. This service is ideal for applications that require random inspirational or entertaining quotes, such as motivational apps, entertainment platforms, or educational tools. With a freemium access model, users can enjoy basic features at no cost, with options to upgrade for more advanced functionalities. The server is known for its high popularity and reliability, boasting a popularity score of 9.7 and a 97% service level, ensuring high-quality and timely responses. Additionally, users can experience fast responses with an average latency of 1227ms.
Features
- Freemium Access: Enjoy basic features without any cost, with options to upgrade for more advanced functionalities.
- High Popularity and Reliability: With a popularity score of 9.7 and a 97% service level, ensuring high-quality and timely responses.
- Low Latency: Experience fast responses with an average latency of 1227ms.
MCP Tools
- POST Endpoint: Retrieve multiple quotes either from famous personalities or movies. Parameters include 'count' for the number of quotes and 'cat' for the category.
- GET Endpoint: Fetch quotes from the available categories. Parameters include 'cat' for the category and 'count' for the number of quotes.
Usage with Different Platforms
python
python
import requests
url = 'http://random-famous-quotes-mcp-server.com/api/quotes'
params = {'cat': 'famous', 'count': 5}
response = requests.get(url, params=params)
quotes = response.json()
print(quotes)
javascript
javascript
fetch('http://random-famous-quotes-mcp-server.com/api/quotes?cat=famous&count=5')
.then(response => response.json())
.then(data => console.log(data));