Trefle

live ScienceBiodiversity

Global plant database — 1M+ species, growth habit, edibility, distribution.

5 tools
0ms auth
free tier 50 calls/day

Tools

search_plants required: query

Search plants by common/scientific name.

Parameters
Name Type Description
query req string Free-text query
edible opt boolean Only edible
vegetable opt boolean Only vegetables
page opt number 1-based page
page_size opt number 1-100
Try it
get_plant required: plant_id

Full plant record by ID.

Parameters
Name Type Description
plant_id req number Trefle plant ID
Try it
search_species required: query

Search species rank.

Parameters
Name Type Description
query req string Free-text query
page opt number 1-based page
page_size opt number 1-100
Try it
get_species required: species_id

Full species record by ID.

Parameters
Name Type Description
species_id req number Trefle species ID
Try it
list_distributions required: zone

Plants in a TDWG zone.

Parameters
Name Type Description
zone req string TDWG zone code
page opt number 1-based page
page_size opt number 1-100
Try it

Test with curl

The gateway speaks JSON-RPC 2.0 over HTTP POST. You can test any pack directly from the terminal.

List available tools
bash
curl -X POST https://gateway.pipeworx.io/trefle/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":1,"method":"tools/list"}'
Call a tool
bash
curl -X POST https://gateway.pipeworx.io/trefle/mcp \
  -H "Content-Type: application/json" \
  -d '{"jsonrpc":"2.0","id":2,"method":"tools/call","params":{"name":"search_plants","arguments":{"query": "hello"}}}'

Use with the SDK

Install @pipeworx/sdk to call tools from any TypeScript/Node project.

TypeScript
import { Pipeworx } from '@pipeworx/sdk';
const px = new Pipeworx();
const result = await px.call("search_plants", {"query":"example"});
ask_pipeworx
// Or ask in plain English:
const answer = await px.ask("global plant database — 1m+ species, growth habit, edibility, distribution");