package.json•2.68 kB
{
"name": "@apify/actors-mcp-server",
"version": "0.4.28",
"type": "module",
"description": "Apify MCP Server",
"mcpName": "com.apify/apify-mcp-server",
"engines": {
"node": ">=18.0.0"
},
"main": "dist/index.js",
"exports": {
".": "./dist/index.js",
"./internals": "./dist/index-internals.js",
"./internals.js": "./dist/index-internals.js"
},
"bin": {
"actors-mcp-server": "./dist/stdio.js"
},
"files": [
"dist",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://github.com/apify/apify-mcp-server.git"
},
"bugs": {
"url": "https://github.com/apify/apify-mcp-server/issues"
},
"homepage": "https://mcp.apify.com",
"keywords": [
"apify",
"mcp",
"server",
"actors",
"model context protocol"
],
"dependencies": {
"@apify/datastructures": "^2.0.3",
"@apify/log": "^2.5.16",
"@modelcontextprotocol/sdk": "^1.18.1",
"@types/cheerio": "^0.22.35",
"@types/turndown": "^5.0.5",
"ajv": "^8.17.1",
"algoliasearch": "^5.31.0",
"apify": "^3.4.2",
"apify-client": "^2.12.6",
"cheerio": "^1.1.2",
"dotenv": "^16.4.7",
"express": "^4.21.2",
"mcp-client-capabilities": "^0.0.5",
"to-json-schema": "^0.2.5",
"turndown": "^7.2.0",
"yargs": "^17.7.2",
"zod": "^3.24.1",
"zod-to-json-schema": "^3.24.1"
},
"devDependencies": {
"@ai-sdk/openai": "^2.0.52",
"@apify/eslint-config": "^1.0.0",
"@apify/tsconfig": "^0.1.0",
"@arizeai/phoenix-client": "^4.2.0",
"@arizeai/phoenix-evals": "^0.2.2",
"@types/express": "^4.0.0",
"@types/to-json-schema": "^0.2.4",
"@types/yargs": "^17.0.33",
"@types/yargs-parser": "^21.0.3",
"eslint": "^9.19.0",
"eventsource": "^3.0.2",
"openai": "^4.77.0",
"tsx": "^4.20.6",
"typescript": "^5.3.3",
"typescript-eslint": "^8.23.0",
"vitest": "^3.0.8"
},
"scripts": {
"start": "npm run start:dev",
"start:prod": "node dist/main.js",
"start:dev": "tsx src/main.ts",
"start:standby": "APIFY_META_ORIGIN=STANDBY npm run start",
"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": "npm run test:unit",
"test:unit": "vitest run tests/unit",
"test:integration": "npm run build && vitest run tests/integration",
"clean": "tsc -b src --clean",
"evals:create-dataset": "tsx evals/create-dataset.ts",
"evals:run": "tsx evals/run-evaluation.ts"
},
"author": "Apify",
"license": "MIT"
}