GnistAI GnistAI
Log in

Cat Breeds

Curated cat breed database — 50+ breeds with temperament, coat type, size, origin, and care characteristics.

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

Data source: In-memory curated collection

MCP MCP Protocol

Endpoint https://context.gnist.ai/mcp/cat-breeds/
claude_desktop_config.json
{
  "mcpServers": {
    "gnist-cat-breeds": {
      "url": "https://context.gnist.ai/mcp/cat-breeds/",
      "headers": {
        "Gnist-API-Key": "YOUR_API_KEY"
      }
    }
  }
}
Shell
curl -X POST "https://context.gnist.ai/mcp/cat-breeds/" \
  -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": "get_cat_breed", "arguments": {"breed_id": "example"}}}'

API REST API

API Root https://context.gnist.ai/rest/cat-breeds/

5 endpoints available:

Shell
curl "https://context.gnist.ai/rest/cat-breeds/get_cat_breed?breed_id=example" \
  -H "Gnist-API-Key: YOUR_API_KEY"
Python
import httpx

resp = httpx.get(
    "https://context.gnist.ai/rest/cat-breeds/get_cat_breed",
    headers={"Gnist-API-Key": "YOUR_API_KEY"},
    params={
        "breed_id": "example"
},
)
print(resp.json())

OpenAPI Spec  ·  Full API Docs

CLI Command Line

Command gc cat-breeds

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

Install
pip install gnistai

Available Tools (5)

get_cat_breed
Get detailed information about a specific cat breed by its ID.
ParameterTypeRequiredDescription
breed_idstringrequiredBreed ID slug (e.g. 'persian', 'maine-coon', 'russian-blue').
list_cat_breeds
List cat breeds with optional filters.
ParameterTypeRequiredDescription
originanyoptionalFilter by country of origin (e.g. 'United States', 'Thailand'). Omit for all origins.
sizeanyoptionalFilter by size: Small, Medium, or Large. Omit for all sizes.
coat_lengthanyoptionalFilter by coat length: Short, Medium, Long, or Hairless. Omit for all types.
search_cat_breeds
Search for cat breeds by keyword.
ParameterTypeRequiredDescription
querystringrequiredSearch keyword — matches breed name, origin, temperament, coat type, or description.
max_resultsanyoptionalMaximum number of results (default: 20, max: 100).
get_random_cat_breed
Get a random cat breed.
report_feedback
Report a bug, feature request, or general feedback for this data source.
ParameterTypeRequiredDescription
feedbackstringrequired
feedback_typestringoptional (default: "general")

Related