Data source: Curated public-domain collection
https://context.gnist.ai/mcp/famous-quotes/
AuthenticationAll requests require a Gnist-API-Key header (or api_key query parameter).
Free tier: 100 calls/day. Get your API key.
Tools (6)
get_random_quoteGet a random famous quote.
Returns a quote with author name and category. Optionally filter by category.
| Parameter | Type | Required | Description |
|---|---|---|---|
category | any | optional | Filter by category (e.g. wisdom, science, humor). Omit for any category. |
{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "get_random_quote",
"arguments": {}
}
}search_quotesSearch for famous quotes by keyword.
Searches across quote text, author names, and categories. Case-insensitive.
| Parameter | Type | Required | Description |
|---|---|---|---|
query | string | required | Search keyword — matches quote text, author name, or category. |
max_results | any | optional | Maximum number of results (default: 10, max: 100). |
{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "search_quotes",
"arguments": {
"query": "example"
}
}
}get_quotes_by_authorGet all quotes by a specific author.
Partial name matching — e.g. "einstein" matches "Albert Einstein".
| Parameter | Type | Required | Description |
|---|---|---|---|
author | string | required | Author name (case-insensitive, partial match). |
max_results | any | optional | Maximum number of results (default: 10, max: 100). |
{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "get_quotes_by_author",
"arguments": {
"author": "example"
}
}
}list_categoriesList all available quote categories.
Returns the category names that can be used to filter random quotes.
{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "list_categories",
"arguments": {}
}
}list_authorsList all authors in the quotes database.
Returns author names that can be used to look up quotes by author.
{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "list_authors",
"arguments": {}
}
}report_feedbackReport a bug, feature request, or general feedback for this data source.
Use this when something doesn't work as expected, when you'd like
a new feature, or when you have suggestions for improvement.
Args:
feedback: Describe the issue or suggestion.
feedback_type: One of 'bug', 'feature_request', or 'general'.
| Parameter | Type | Required | Description |
|---|---|---|---|
feedback | string | required | |
feedback_type | string | optional | (default: "general") |
{
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "report_feedback",
"arguments": {
"feedback": "example"
}
}
}Quick Start
curl -X POST "https://context.gnist.ai/mcp/famous-quotes/" \
-H "Content-Type: application/json" \
-H "Accept: application/json, text/event-stream" \
-H "Gnist-API-Key: YOUR_API_KEY" \
-d '{"jsonrpc": "2.0", "method": "tools/call", "id": 1, "params": {"name": "search_quotes", "arguments": {"query": "example"}}}'
import httpx
resp = httpx.post(
"https://context.gnist.ai/mcp/famous-quotes/",
headers={"Gnist-API-Key": "YOUR_API_KEY", "Content-Type": "application/json"},
json={
"jsonrpc": "2.0",
"method": "tools/call",
"id": 1,
"params": {
"name": "search_quotes",
"arguments": {
"query": "example"
}
}
},
)
print(resp.json())