Skip to content

Commit 882d394

Browse files
committed
Nick:
1 parent 87506df commit 882d394

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "firecrawl-mcp",
3-
"version": "3.0.2",
3+
"version": "3.0.7",
44
"description": "MCP server for Firecrawl web scraping integration. Supports both cloud and self-hosted instances. Features include web scraping, search, batch processing, structured data extraction, and LLM-powered content analysis.",
55
"type": "module",
66
"bin": {
@@ -18,7 +18,6 @@
1818
"test:endpoints": "node test-endpoints.js",
1919
"start": "node dist/index.js",
2020
"start:cloud": "CLOUD_SERVICE=true node dist/index.js",
21-
"start:fastmcp": "node dist/fastmcp/server.js",
2221
"lint": "eslint src/**/*.ts",
2322
"lint:fix": "eslint src/**/*.ts --fix",
2423
"format": "prettier --write .",
@@ -35,7 +34,7 @@
3534
"zod": "^4.1.5"
3635
},
3736
"engines": {
38-
"node": ">=18.0.0"
37+
"node": ">=20.0.0"
3938
},
4039
"keywords": [
4140
"mcp",

src/index.ts

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
1+
#!/usr/bin/env node
12
import dotenv from 'dotenv';
23
import { FastMCP, type Logger } from 'fastmcp';
34
import { z } from 'zod';
@@ -235,7 +236,7 @@ server.addTool({
235236
server.addTool({
236237
name: 'firecrawl_search',
237238
description:
238-
'Search the web and optionally scrape results. Provide scrapeOptions.formats (strings or { type: "json", ... }) for per-result extraction.',
239+
'Search the web and optionally scrape results. Provide scrapeOptions.formats (strings or { type: "json", ... }) for per-result extraction only when you think it is absolutely necessary. When you do so default to a lower limit to avoid timeouts, maybe 5.',
239240
parameters: z.object({
240241
query: z.string().min(1),
241242
limit: z.number().optional(),

0 commit comments

Comments
 (0)