File tree Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Expand file tree Collapse file tree 3 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -64,7 +64,7 @@ Add this to your `claude_desktop_config.json`:
64
64
``` json
65
65
{
66
66
"mcpServers" : {
67
- "firecrawl" : {
67
+ "mcp-server- firecrawl" : {
68
68
"command" : " npx" ,
69
69
"args" : [" -y" , " mcp-server-firecrawl" ],
70
70
"env" : {
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " mcp-server-firecrawl" ,
3
- "version" : " 1.0.0 " ,
3
+ "version" : " 1.0.1 " ,
4
4
"description" : " MCP server for FireCrawl web scraping integration" ,
5
5
"license" : " MIT" ,
6
6
"type" : " module" ,
7
7
"bin" : {
8
- "mcp-server-firecrawl" : " dist/index.js"
8
+ "mcp-server-firecrawl" : " dist/src/ index.js"
9
9
},
10
10
"files" : [
11
11
" dist"
12
12
],
13
13
"scripts" : {
14
14
"build" : " tsc" ,
15
15
"test" : " jest" ,
16
- "start" : " node dist/index.js" ,
16
+ "start" : " node dist/src/ index.js" ,
17
17
"lint" : " eslint src/**/*.ts" ,
18
18
"lint:fix" : " eslint src/**/*.ts --fix"
19
19
},
Original file line number Diff line number Diff line change @@ -459,6 +459,9 @@ function isStatusCheckOptions(args: unknown): args is StatusCheckOptions {
459
459
) ;
460
460
}
461
461
462
+ // Add startup message
463
+ console . log ( "FireCrawl MCP Server running on stdio" ) ;
464
+
462
465
// Server implementation
463
466
const server = new Server (
464
467
{
You can’t perform that action at this time.
0 commit comments