@nutrient-sdk/document-engine-mcp-server
Version:
MCP server for Nutrient Document Engine
78 lines (77 loc) • 2.2 kB
JSON
{
"name": "@nutrient-sdk/document-engine-mcp-server",
"version": "0.0.1",
"description": "MCP server for Nutrient Document Engine",
"license": "MIT",
"author": "Nutrient (https://www.nutrient.io)",
"homepage": "https://www.nutrient.io/",
"bin": {
"nutrient-document-engine-mcp-server": "dist/index.js"
},
"repository": {
"type": "git",
"url": "git+https://github.com/PSPDFKit/nutrient-document-engine-mcp-server.git"
},
"keywords": [
"mcp",
"nutrient",
"document-engine"
],
"engines": {
"node": ">=18.0.0",
"pnpm": ">=9.10.0"
},
"type": "module",
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc && shx chmod +x dist/index.js",
"lint": "eslint .",
"lint:fix": "eslint . --fix",
"pretest": "tsc --project tsconfig.test.json --noEmit",
"test": "vitest run",
"test:watch": "vitest",
"test:integration": "vitest run test/integration.test.ts",
"test:unit": "vitest run --exclude test/integration.test.ts",
"preeval": "tsc --project tsconfig.evals.json",
"eval": "pnpm run preeval && tsx evaluation/index.ts",
"clean": "shx rm -rf dist",
"start": "node -r dotenv/config dist/index.js",
"generate-schema": "node scripts/generateSchema.js"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.13.3",
"axios": "^1.10.0",
"dotenv": "^16.6.1",
"express": "^4.21.2",
"express-basic-auth": "^1.2.1",
"multer": "^2.0.1",
"openapi-client-axios": "^7.6.0",
"zod": "^3.24.3"
},
"devDependencies": {
"@eslint/js": "^9.26.0",
"@langchain/core": "^0.3.61",
"@langchain/langgraph": "^0.3.6",
"@langchain/openai": "^0.5.16",
"@types/express": "^4.17.23",
"@types/multer": "^2.0.0",
"@types/node": "^24.0.10",
"@types/supertest": "^6.0.3",
"axios-mock-adapter": "^2.1.0",
"eslint": "^9.30.1",
"eslint-config-prettier": "^10.1.5",
"eslint-plugin-prettier": "^5.5.1",
"langchain": "^0.3.29",
"prettier": "^3.6.2",
"shx": "^0.4.0",
"supertest": "^7.1.1",
"tsx": "^4.20.3",
"typescript": "^5.8.3",
"typescript-eslint": "^8.35.1",
"vitest": "^3.2.4"
}
}