docs: default Firecrawl URL to public API

This commit is contained in:
Hermes Agent
2026-08-02 17:45:51 +02:00
parent b812292d56
commit 1bc3c6452f
9 changed files with 20 additions and 20 deletions
+9 -9
View File
@@ -105,7 +105,7 @@ Uses Wikimedia Commons to return:
### `search_botanical_sources(query: str, limit: int = 5)`
Uses a local Firecrawl instance if `FIRECRAWL_API_URL` is configured. If not configured, the tool returns source-constrained suggested queries rather than pretending to have scraped content.
Uses the configured Firecrawl endpoint if `FIRECRAWL_API_URL` is configured. The examples default to the public Firecrawl API (`https://api.firecrawl.dev`), and you can replace it with a self-hosted endpoint if preferred. If Firecrawl is not configured, the tool returns source-constrained suggested queries rather than pretending to have scraped content.
## Sources
@@ -143,7 +143,7 @@ mcp_servers:
timeout: 120
connect_timeout: 60
env:
FIRECRAWL_API_URL: "http://localhost:3002"
FIRECRAWL_API_URL: "https://api.firecrawl.dev"
FIRECRAWL_API_KEY: ""
BOTANICAL_ALLOWED_DOMAINS: "gbif.org,powo.science.kew.org,missouribotanicalgarden.org,tela-botanica.org,inpn.mnhn.fr,rhs.org.uk,edu,wikimedia.org,wikipedia.org"
OPENHERBARIUM_TIMEOUT: "20"
@@ -183,7 +183,7 @@ Hermes JSON-style snippet:
"timeout": 120,
"connect_timeout": 60,
"env": {
"FIRECRAWL_API_URL": "http://localhost:3002",
"FIRECRAWL_API_URL": "https://api.firecrawl.dev",
"FIRECRAWL_API_KEY": "",
"BOTANICAL_ALLOWED_DOMAINS": "gbif.org,powo.science.kew.org,missouribotanicalgarden.org,tela-botanica.org,inpn.mnhn.fr,rhs.org.uk,edu,wikimedia.org,wikipedia.org",
"OPENHERBARIUM_TIMEOUT": "20"
@@ -218,8 +218,8 @@ Available parameters:
| Environment variable | Required | Default | Purpose |
|---|---:|---|---|
| `FIRECRAWL_API_URL` | No | unset | Local Firecrawl base URL. Enables `search_botanical_sources` and richer source search in care/species tools. |
| `FIRECRAWL_API_KEY` | No | unset | Optional bearer token if your Firecrawl instance requires authentication. |
| `FIRECRAWL_API_URL` | No | unset | Firecrawl base URL. The examples use the public API `https://api.firecrawl.dev`; replace it with your self-hosted endpoint if preferred. Enables `search_botanical_sources` and richer source search in care/species tools. |
| `FIRECRAWL_API_KEY` | No | unset | Bearer token for the public Firecrawl API, or for any self-hosted instance that requires authentication. |
| `BOTANICAL_ALLOWED_DOMAINS` | No | built-in allow-list | Comma-separated source domains used to constrain targeted botanical searches. |
| `OPENHERBARIUM_TIMEOUT` | No | `20` | HTTP timeout in seconds for public APIs and Firecrawl calls. |
@@ -236,7 +236,7 @@ Generic JSON example with all configurable parameters:
"openherbarium-mcp"
],
"env": {
"FIRECRAWL_API_URL": "http://localhost:3002",
"FIRECRAWL_API_URL": "https://api.firecrawl.dev",
"FIRECRAWL_API_KEY": "",
"BOTANICAL_ALLOWED_DOMAINS": "gbif.org,powo.science.kew.org,missouribotanicalgarden.org,tela-botanica.org,inpn.mnhn.fr,rhs.org.uk,edu,wikimedia.org,wikipedia.org",
"OPENHERBARIUM_TIMEOUT": "20"
@@ -287,7 +287,7 @@ mcp_servers:
timeout: 120
connect_timeout: 60
env:
FIRECRAWL_API_URL: "http://localhost:3002"
FIRECRAWL_API_URL: "https://api.firecrawl.dev"
FIRECRAWL_API_KEY: ""
BOTANICAL_ALLOWED_DOMAINS: "gbif.org,powo.science.kew.org,missouribotanicalgarden.org,tela-botanica.org,inpn.mnhn.fr,rhs.org.uk,edu,wikimedia.org,wikipedia.org"
OPENHERBARIUM_TIMEOUT: "20"
@@ -308,11 +308,11 @@ For direct local execution outside an MCP client, you can also copy `.env.exampl
to `.env` and set the same parameters there:
```bash
FIRECRAWL_API_URL=http://localhost:3002
FIRECRAWL_API_URL=https://api.firecrawl.dev
FIRECRAWL_API_KEY=
```
If Firecrawl is not configured, source-search tools return explicit suggested queries and a `not_configured` status.
If Firecrawl is not configured, source-search tools return explicit suggested queries and a `not_configured` status. With the public API URL, set `FIRECRAWL_API_KEY` to your Firecrawl key.
## Development