GnistAI GnistAI
Log in

Famous Quotes

Famous quotes collection — search by author, keyword, or category, get random quotes.

Overview   |   MCP Docs   |   API Docs   |   OpenAPI   |   Playground   |   Tutorial   |   Toolkits   |   Home
status: healthy status status healthy healthy tools: 6 tools tools 6 6 Reference

Data source: Curated public-domain collection

MCP MCP Protocol

Endpoint https://context.gnist.ai/mcp/famous-quotes/
claude_desktop_config.json
{
  "mcpServers": {
    "gnist-famous-quotes": {
      "url": "https://context.gnist.ai/mcp/famous-quotes/",
      "headers": {
        "Gnist-API-Key": "YOUR_API_KEY"
      }
    }
  }
}
Shell
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"}}}'

API REST API

API Root https://context.gnist.ai/rest/famous-quotes/

6 endpoints available:

Shell
curl "https://context.gnist.ai/rest/famous-quotes/search_quotes?query=example" \
  -H "Gnist-API-Key: YOUR_API_KEY"
Python
import httpx

resp = httpx.get(
    "https://context.gnist.ai/rest/famous-quotes/search_quotes",
    headers={"Gnist-API-Key": "YOUR_API_KEY"},
    params={
        "query": "example"
},
)
print(resp.json())

OpenAPI Spec  ·  Full API Docs

CLI Command Line

Command gc famous-quotes

CLI documentation will be available when the GnistAI SDK is published.

Install
pip install gnistai

Available Tools (6)

get_random_quote
Get a random famous quote.
ParameterTypeRequiredDescription
categoryanyoptionalFilter by category (e.g. wisdom, science, humor). Omit for any category.
search_quotes
Search for famous quotes by keyword.
ParameterTypeRequiredDescription
querystringrequiredSearch keyword — matches quote text, author name, or category.
max_resultsanyoptionalMaximum number of results (default: 10, max: 100).
get_quotes_by_author
Get all quotes by a specific author.
ParameterTypeRequiredDescription
authorstringrequiredAuthor name (case-insensitive, partial match).
max_resultsanyoptionalMaximum number of results (default: 10, max: 100).
list_categories
List all available quote categories.
list_authors
List all authors in the quotes database.
report_feedback
Report a bug, feature request, or general feedback for this data source.
ParameterTypeRequiredDescription
feedbackstringrequired
feedback_typestringoptional (default: "general")

Related