quotes15

quotes15

3.5

Quotes15 MCP Server provides access to a vast collection of famous quotes in multiple languages.

The Quotes15 server offers a free, multilingual service that returns random quotes selected from a carefully curated collection of the best-rated quotes. With over 1,000,000 quotes sourced globally, you can enjoy a diverse array of perspectives and insights.

Features

  • {'name': 'Free and Unlimited Access', 'description': 'Enjoy unlimited requests to the server without any charges.'}
  • {'name': 'Multilingual Support', 'description': 'Access quotes in various languages, including English, Spanish, Portuguese, Italian, German, French, Czech, Slovak, Polish, Hungarian, and Russian.'}
  • {'name': 'Curated Content', 'description': 'All quotes are curated by users to ensure quality and relevance.'}

MCP Tools

  • Random Quote Tool: This tool returns a random quote. The tool can be customized with the language_code parameter to specify the language of the quote.

Usage with Different Platforms

python

python
import requests

response = requests.get('https://quotes15.com/api/random', params={'language_code': 'en'})
quote = response.json()
print(quote['content'])

javascript

javascript
fetch('https://quotes15.com/api/random?language_code=en')
  .then(response => response.json())
  .then(data => console.log(data.content));