@sylphlab/tools-pdf-mcp
Version:
MCP server providing PDF tools (text extraction, etc.)
49 lines • 1.07 kB
JSON
{
"name": "@sylphlab/tools-pdf-mcp",
"version": "0.5.1",
"description": "MCP server providing PDF tools (text extraction, etc.)",
"type": "module",
"main": "./dist/index.cjs",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"files": [
"dist"
],
"bin": {
"mcp-pdf": "./dist/index.js"
},
"keywords": [
"mcp",
"tool",
"pdf",
"text"
],
"author": "",
"license": "ISC",
"devDependencies": {
"@types/node": "^22.14.1",
"tsup": "^8.0.2",
"typescript": "^5.4.5",
"vitest": "^3.1.2"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.10.1",
"zod": "^3.23.8",
"@sylphlab/tools-core": "0.4.1",
"@sylphlab/tools-pdf": "0.7.1",
"@sylphlab/tools-adaptor-mcp": "0.3.1"
},
"scripts": {
"build": "tsup",
"dev": "tsup src/index.ts --format cjs,esm --dts --watch",
"test": "vitest run",
"lint": "biome lint"
}
}