Skip to content

Commit bc95286

Browse files
committed
updates package json
1 parent e3c0193 commit bc95286

File tree

3 files changed

+7
-4
lines changed

3 files changed

+7
-4
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ Add this to your `claude_desktop_config.json`:
6464
```json
6565
{
6666
"mcpServers": {
67-
"firecrawl": {
67+
"mcp-server-firecrawl": {
6868
"command": "npx",
6969
"args": ["-y", "mcp-server-firecrawl"],
7070
"env": {

package.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,19 @@
11
{
22
"name": "mcp-server-firecrawl",
3-
"version": "1.0.0",
3+
"version": "1.0.1",
44
"description": "MCP server for FireCrawl web scraping integration",
55
"license": "MIT",
66
"type": "module",
77
"bin": {
8-
"mcp-server-firecrawl": "dist/index.js"
8+
"mcp-server-firecrawl": "dist/src/index.js"
99
},
1010
"files": [
1111
"dist"
1212
],
1313
"scripts": {
1414
"build": "tsc",
1515
"test": "jest",
16-
"start": "node dist/index.js",
16+
"start": "node dist/src/index.js",
1717
"lint": "eslint src/**/*.ts",
1818
"lint:fix": "eslint src/**/*.ts --fix"
1919
},

src/index.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -459,6 +459,9 @@ function isStatusCheckOptions(args: unknown): args is StatusCheckOptions {
459459
);
460460
}
461461

462+
// Add startup message
463+
console.log("FireCrawl MCP Server running on stdio");
464+
462465
// Server implementation
463466
const server = new Server(
464467
{

0 commit comments

Comments
 (0)