GnistAI GnistAI
Log in

Dog Breeds

Curated dog breed database — search 50+ breeds by group, size, origin, or keyword, with detailed characteristics.

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: In-memory curated collection

MCP 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"}}}'

API REST API

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

6 endpoints available:

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())

OpenAPI Spec  ·  Full API Docs

CLI 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_breed
Get detailed information about a specific dog breed.
ParameterTypeRequiredDescription
breed_idstringrequiredSlug ID of the breed (e.g. 'labrador-retriever', 'german-shepherd').
list_dog_breeds
List dog breeds with optional filters.
ParameterTypeRequiredDescription
breed_groupanyoptionalFilter by breed group (e.g. Sporting, Herding, Working, Toy, Terrier, Hound, Non-Sporting).
sizeanyoptionalFilter by size (Small, Medium, Large, Giant).
originanyoptionalFilter by country of origin (e.g. Germany, Japan, United Kingdom).
search_dog_breeds
Search dog breeds by keyword.
ParameterTypeRequiredDescription
querystringrequiredSearch keyword — matches breed name, temperament traits, or description.
max_resultsanyoptionalMaximum number of results (default: 20, max: 100).
get_random_dog_breed
Get a random dog breed from the database.
list_breed_groups
List all available breed group names.
report_feedback
Report a bug, feature request, or general feedback for this data source.
ParameterTypeRequiredDescription
feedbackstringrequired
feedback_typestringoptional (default: "general")

Related