package.json•2.16 kB
{
"name": "@apify/actors-mcp-server",
"version": "0.2.12",
"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/datastructures": "^2.0.3",
"@apify/log": "^2.5.16",
"@modelcontextprotocol/sdk": "^1.13.2",
"@types/turndown": "^5.0.5",
"ajv": "^8.17.1",
"algoliasearch": "^5.31.0",
"apify": "^3.4.2",
"apify-client": "^2.12.6",
"express": "^4.21.2",
"turndown": "^7.2.0",
"yargs": "^17.7.2",
"zod": "^3.24.1",
"zod-to-json-schema": "^3.24.1"
},
"devDependencies": {
"@anthropic-ai/sdk": "^0.33.1",
"@anthropic-ai/tokenizer": "^0.0.4",
"@apify/eslint-config": "^1.0.0",
"@apify/tsconfig": "^0.1.0",
"@types/express": "^4.0.0",
"@types/yargs": "^17.0.33",
"@types/yargs-parser": "^21.0.3",
"dotenv": "^16.4.7",
"eslint": "^9.19.0",
"eventsource": "^3.0.2",
"tsx": "^4.6.2",
"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",
"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",
"prepare": "npm run build"
},
"author": "Apify",
"license": "MIT"
}