package.json•1.67 kB
{
"name": "@apify/actors-mcp-server",
"version": "0.1.24",
"type": "module",
"description": "Model Context Protocol Server for Apify",
"engines": {
"node": ">=18.0.0"
},
"main": "dist/index.js",
"bin": {
"actors-mcp-server": "./dist/stdio.js"
},
"files": [
"dist",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://github.com/apify/actors-mcp-server.git"
},
"bugs": {
"url": "https://github.com/apify/actors-mcp-server/issues"
},
"homepage": "https://apify.com/apify/actors-mcp-server",
"keywords": [
"apify",
"mcp",
"server",
"actors",
"model context protocol"
],
"dependencies": {
"@apify/log": "^2.5.16",
"@modelcontextprotocol/sdk": "^1.10.1",
"@playwright/mcp": "^0.0.27",
"apify": "^3.4.0",
"apify-client": "^2.12.1",
"express": "^4.21.2"
},
"devDependencies": {
"@apify/eslint-config": "^1.0.0",
"@apify/tsconfig": "^0.1.0",
"@types/express": "^4.0.0",
"eslint": "^9.19.0",
"eventsource": "^3.0.2",
"tsx": "^4.6.2",
"typescript": "^5.3.3",
"typescript-eslint": "^8.23.0"
},
"scripts": {
"start": "npm run start:dev",
"start:prod": "node dist/main.js",
"start:dev": "tsx src/main.ts",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"build": "tsc -b src",
"build:watch": "tsc -b src -w",
"type-check": "tsc --noEmit",
"inspector": "npm run build && npx @modelcontextprotocol/inspector dist/stdio.js",
"test": "echo \"Error: oops, the actor has no tests yet, sad!\" && exit 1",
"clean": "tsc -b src --clean"
},
"author": "Apify",
"license": "MIT"
}