Skip to content

Commit

Permalink
Add node shebang line
Browse files Browse the repository at this point in the history
  • Loading branch information
jirispilka committed Jan 17, 2025
1 parent 10ba1aa commit 39c2aa5
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 2 deletions.
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
{
"name": "@apify/actors-mcp-server",
"version": "0.1.0",
"version": "0.1.1",
"type": "module",
"description": "Model Context Protocol Server for Apify Actors",
"engines": {
"node": ">=18.0.0"
},
"main": "dist/index.js",
"bin": {
"actors-mcp-server": "dist/index.js"
"actors-mcp-server": "./dist/index.js"
},
"files": [
"dist",
Expand Down
1 change: 1 addition & 0 deletions src/index.ts
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
#!/usr/bin/env node
/**
* This script initializes and starts the Apify MCP server using the Stdio transport.
*
Expand Down

0 comments on commit 39c2aa5

Please sign in to comment.