Skip to content

Commit

Permalink
updates package json
Browse files Browse the repository at this point in the history
  • Loading branch information
vrknetha committed Dec 7, 2024
1 parent e3c0193 commit bc95286
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 4 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ Add this to your `claude_desktop_config.json`:
```json
{
"mcpServers": {
"firecrawl": {
"mcp-server-firecrawl": {
"command": "npx",
"args": ["-y", "mcp-server-firecrawl"],
"env": {
Expand Down
6 changes: 3 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,19 +1,19 @@
{
"name": "mcp-server-firecrawl",
"version": "1.0.0",
"version": "1.0.1",
"description": "MCP server for FireCrawl web scraping integration",
"license": "MIT",
"type": "module",
"bin": {
"mcp-server-firecrawl": "dist/index.js"
"mcp-server-firecrawl": "dist/src/index.js"
},
"files": [
"dist"
],
"scripts": {
"build": "tsc",
"test": "jest",
"start": "node dist/index.js",
"start": "node dist/src/index.js",
"lint": "eslint src/**/*.ts",
"lint:fix": "eslint src/**/*.ts --fix"
},
Expand Down
3 changes: 3 additions & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -459,6 +459,9 @@ function isStatusCheckOptions(args: unknown): args is StatusCheckOptions {
);
}

// Add startup message
console.log("FireCrawl MCP Server running on stdio");

// Server implementation
const server = new Server(
{
Expand Down

0 comments on commit bc95286

Please sign in to comment.