Reference
Data source: In-memory curated collection
MCP Protocol
Endpoint
https://context.gnist.ai/mcp/dog-breeds/
claude_desktop_config.json
{
"mcpServers": {
"gnist-dog-breeds": {
"url": "https://context.gnist.ai/mcp/dog-breeds/",
"headers": {
"Gnist-API-Key": "YOUR_API_KEY"
}
}
}
}
Shell
curl -X POST "https://context.gnist.ai/mcp/dog-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_dog_breed", "arguments": {"breed_id": "example"}}}'
REST API
API Root
https://context.gnist.ai/rest/dog-breeds/
6 endpoints available:
GET /rest/dog-breeds/get_dog_breedGET /rest/dog-breeds/list_dog_breedsGET /rest/dog-breeds/search_dog_breedsGET /rest/dog-breeds/get_random_dog_breedGET /rest/dog-breeds/list_breed_groupsGET /rest/dog-breeds/report_feedback
Shell
curl "https://context.gnist.ai/rest/dog-breeds/get_dog_breed?breed_id=example" \ -H "Gnist-API-Key: YOUR_API_KEY"
Python
import httpx
resp = httpx.get(
"https://context.gnist.ai/rest/dog-breeds/get_dog_breed",
headers={"Gnist-API-Key": "YOUR_API_KEY"},
params={
"breed_id": "example"
},
)
print(resp.json())
Command Line
Command
gc dog-breeds
CLI documentation will be available when the GnistAI SDK is published.
Install
pip install gnistai
Available Tools (6)
get_dog_breedGet detailed information about a specific dog breed.
| Parameter | Type | Required | Description |
|---|---|---|---|
breed_id | string | required | Slug ID of the breed (e.g. 'labrador-retriever', 'german-shepherd'). |
list_dog_breedsList dog breeds with optional filters.
| Parameter | Type | Required | Description |
|---|---|---|---|
breed_group | any | optional | Filter by breed group (e.g. Sporting, Herding, Working, Toy, Terrier, Hound, Non-Sporting). |
size | any | optional | Filter by size (Small, Medium, Large, Giant). |
origin | any | optional | Filter by country of origin (e.g. Germany, Japan, United Kingdom). |
search_dog_breedsSearch dog breeds by keyword.
| Parameter | Type | Required | Description |
|---|---|---|---|
query | string | required | Search keyword — matches breed name, temperament traits, or description. |
max_results | any | optional | Maximum number of results (default: 20, max: 100). |
get_random_dog_breedGet a random dog breed from the database.
list_breed_groupsList all available breed group names.
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") |