firecrawl-mcp 1.3.2 → 1.3.3

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/dist/index.js +2 -2
  2. package/package.json +2 -2
package/dist/index.js CHANGED
@@ -539,8 +539,8 @@ function isExtractOptions(args) {
539
539
  }
540
540
  // Server implementation
541
541
  const server = new Server({
542
- name: 'fire-crawl',
543
- version: '0.1.0',
542
+ name: 'firecrawl-mcp',
543
+ version: '1.3.2',
544
544
  }, {
545
545
  capabilities: {
546
546
  tools: {},
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "firecrawl-mcp",
3
- "version": "1.3.2",
3
+ "version": "1.3.3",
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
6
  "bin": {
@@ -13,7 +13,7 @@
13
13
  "access": "public"
14
14
  },
15
15
  "scripts": {
16
- "build": "tsc && shx chmod +x dist/*.js",
16
+ "build": "tsc && node -e \"require('fs').chmodSync('dist/index.js', '755')\"",
17
17
  "test": "node --experimental-vm-modules node_modules/jest/bin/jest.js",
18
18
  "start": "node dist/index.js",
19
19
  "lint": "eslint src/**/*.ts",