firecrawl-mcp 1.3.0 → 1.3.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +6 -8
  2. package/package.json +4 -2
package/README.md CHANGED
@@ -4,8 +4,6 @@
4
4
 
5
5
  A Model Context Protocol (MCP) server implementation that integrates with FireCrawl for advanced web scraping capabilities.
6
6
 
7
- <a href="https://glama.ai/mcp/servers/57mideuljt"><img width="380" height="200" src="https://glama.ai/mcp/servers/57mideuljt/badge" alt="mcp-server-firecrawl MCP server" /></a>
8
-
9
7
  ## Features
10
8
 
11
9
  - Web scraping with JavaScript rendering
@@ -21,18 +19,18 @@ A Model Context Protocol (MCP) server implementation that integrates with FireCr
21
19
 
22
20
  ## Installation
23
21
 
24
- ### Installing via Smithery
25
-
26
- To install FireCrawl for Claude Desktop automatically via [Smithery](https://smithery.ai/server/@mendableai/mcp-server-firecrawl):
22
+ ### Manual Installation
27
23
 
28
24
  ```bash
29
- npx -y @smithery/cli install @mendableai/mcp-server-firecrawl --client claude
25
+ npm install -g firecrawl-mcp
30
26
  ```
31
27
 
32
- ### Manual Installation
28
+ ### Installing via Smithery
29
+
30
+ To install FireCrawl for Claude Desktop automatically via [Smithery](https://smithery.ai/server/@mendableai/mcp-server-firecrawl):
33
31
 
34
32
  ```bash
35
- npm install -g mcp-server-firecrawl
33
+ npx -y @smithery/cli install @mendableai/mcp-server-firecrawl --client claude
36
34
  ```
37
35
 
38
36
  ## Configuration
package/package.json CHANGED
@@ -1,9 +1,11 @@
1
1
  {
2
2
  "name": "firecrawl-mcp",
3
- "version": "1.3.0",
3
+ "version": "1.3.1",
4
4
  "description": "MCP server for FireCrawl web scraping integration. Supports both cloud and self-hosted instances. Features include web scraping, batch processing, structured data extraction, and LLM-powered content analysis.",
5
5
  "type": "module",
6
- "bin": "dist/src/index.js",
6
+ "bin": {
7
+ "firecrawl-mcp": "dist/src/index.js"
8
+ },
7
9
  "files": [
8
10
  "dist",
9
11
  "README.md",