-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
51 lines (51 loc) · 1.15 KB
/
Copy pathpackage.json
File metadata and controls
51 lines (51 loc) · 1.15 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
{
"name": "filetopdf-mcp",
"version": "0.1.1",
"type": "module",
"mcpName": "dev.filetopdf/filetopdf-mcp",
"description": "Model Context Protocol (MCP) server for FileToPDF — convert files, HTML, and Markdown to PDF from any MCP client (Claude, Cursor, etc.). Bring your own API key.",
"keywords": [
"mcp",
"modelcontextprotocol",
"mcp-server",
"filetopdf",
"pdf",
"convert-to-pdf",
"html-to-pdf",
"markdown-to-pdf",
"docx-to-pdf",
"document-conversion",
"claude",
"cursor",
"cline"
],
"homepage": "https://filetopdf.dev",
"license": "MIT",
"author": "FileToPDF <support@filetopdf.dev>",
"engines": {
"node": ">=18"
},
"bin": {
"filetopdf-mcp": "dist/stdio.js"
},
"files": [
"dist",
"README.md",
"LICENSE"
],
"scripts": {
"build": "tsc",
"start": "node dist/stdio.js",
"start:http": "node dist/http.js",
"prepare": "npm run build",
"test": "node test/live-test.mjs"
},
"dependencies": {
"@modelcontextprotocol/sdk": "^1.12.0",
"zod": "^3.23.8"
},
"devDependencies": {
"typescript": "^5.5.4",
"@types/node": "^20.14.0"
}
}