Seeds of Hawaii

Navigation

LLM Integration

Connect the Seeds of Hawaii database to any LLM for natural language queries.

Quick Start Guide

MCP Native Support

Claude Desktop has native MCP support. Once configured, Claude can directly query the database.

Step 1: Find your config file

# macOS
~/Library/Application Support/Claude/claude_desktop_config.json
# Windows
%APPDATA%\Claude\claude_desktop_config.json

Step 2: Add this configuration

{
  "mcpServers": {
    "seeds-of-hawaii": {
      "command": "node",
      "args": ["path/to/mcp-server/dist/index.js"],
      "env": {
        "SUPABASE_URL": "your-supabase-url",
        "SUPABASE_SERVICE_KEY": "your-service-key"
      }
    }
  }
}

Step 3: Restart Claude Desktop

The Seeds of Hawaii tools will appear in your conversation. Try asking:"How many endangered species are found only on Maui?"

Available Operations

POST

/api/query

Advanced search with filters, calculations, and aggregations

GET

/api/statistics

Database-wide counts by listing, status, island, and family

POST

/api/llm

Natural language queries with built-in AI (uses Claude)

Example Natural Language Queries

How many endangered species are found only on Maui?
List all species in the Campanulaceae family
What percentage of Hawaiian plants are endemic?
How many Hibiscus seeds would fit in a 250ml flask?
Compare seed sizes between endangered and non-endangered species
Which island has the most exclusive species?
Find all species with Hawaiian names that are threatened
What families have the most endangered species?

Need More Details?

See the complete API reference for all endpoints, parameters, and response formats.

View API Documentation →