tronald-dump

tronald-dump

3.4

Tronald Dump MCP server is a humorous archive of Donald Trump's quotes, offering an API and web archive for entertainment, research, or curiosity.

The Tronald Dump MCP server is a humorous archive dedicated to cataloging the most outrageous and amusing quotes from Donald Trump. It provides a comprehensive API and web archive for those interested in exploring these memorable statements, whether for entertainment, research, or curiosity. The server offers various tools to interact with its collection of quotes, allowing users to search, retrieve, and explore quotes based on different criteria. With its user-friendly design, the Tronald Dump MCP server makes it easy to engage with the content and enjoy the distinct flavor of humor it offers.

Features

  • {'name': 'Search Quotes', 'description': 'Perform a free-text search to find quotes based on specific keywords or phrases.'}
  • {'name': 'Get Quote by ID', 'description': 'Retrieve a specific quote using its unique identifier.'}
  • {'name': 'Retrieve Tags', 'description': 'Get a list of all available tags that categorize the quotes.'}
  • {'name': 'Get Quotes by Tag', 'description': 'Fetch quotes that are associated with a specific tag.'}
  • {'name': 'Retrieve a Random Quote', 'description': 'Enjoy a randomly selected quote from the collection.'}

Usage with Different Platforms

python

python
import requests

# Example: Search for quotes with a keyword
response = requests.get('https://api.tronalddump.io/search/quote', params={'query': 'economy'})
quotes = response.json()
print(quotes)

javascript

javascript
const fetch = require('node-fetch');

// Example: Retrieve a random quote
fetch('https://api.tronalddump.io/random/quote')
  .then(response => response.json())
  .then(data => console.log(data));