Reference
Data source: In-memory curated collection
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"}}}'
REST API
API Root
https://context.gnist.ai/rest/cat-breeds/
5 endpoints available:
GET /rest/cat-breeds/get_cat_breedGET /rest/cat-breeds/list_cat_breedsGET /rest/cat-breeds/search_cat_breedsGET /rest/cat-breeds/get_random_cat_breedGET /rest/cat-breeds/report_feedback
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())
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_breedGet detailed information about a specific cat breed by its ID.
| Parameter | Type | Required | Description |
|---|---|---|---|
breed_id | string | required | Breed ID slug (e.g. 'persian', 'maine-coon', 'russian-blue'). |
list_cat_breedsList cat breeds with optional filters.
| Parameter | Type | Required | Description |
|---|---|---|---|
origin | any | optional | Filter by country of origin (e.g. 'United States', 'Thailand'). Omit for all origins. |
size | any | optional | Filter by size: Small, Medium, or Large. Omit for all sizes. |
coat_length | any | optional | Filter by coat length: Short, Medium, Long, or Hairless. Omit for all types. |
search_cat_breedsSearch for cat breeds by keyword.
| Parameter | Type | Required | Description |
|---|---|---|---|
query | string | required | Search keyword — matches breed name, origin, temperament, coat type, or description. |
max_results | any | optional | Maximum number of results (default: 20, max: 100). |
get_random_cat_breedGet a random cat breed.
report_feedbackReport a bug, feature request, or general feedback for this data source.
| Parameter | Type | Required | Description |
|---|---|---|---|
feedback | string | required | |
feedback_type | string | optional | (default: "general") |