-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmanifest.json
More file actions
91 lines (91 loc) · 2.87 KB
/
Copy pathmanifest.json
File metadata and controls
91 lines (91 loc) · 2.87 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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
{
"manifest_version": "0.3",
"name": "filetopdf",
"display_name": "FileToPDF",
"version": "0.1.1",
"description": "Convert files (DOCX, XLSX, PPTX, images), HTML, and Markdown to pixel-perfect PDFs.",
"long_description": "FileToPDF lets Claude turn anything into a polished PDF: render Markdown notes or reports, convert raw HTML (invoices, receipts, certificates) with full Chromium fidelity, or convert documents at a public URL — DOCX, XLSX, PPTX, ODT, RTF, TXT, CSV, images, and more.\n\nEach conversion returns the PDF as an embedded resource, and you can optionally save PDFs straight to a folder of your choice.\n\n**Bring your own API key** — get one free, in one click, at [filetopdf.dev](https://filetopdf.dev) (10 free conversions, no signup required).",
"author": {
"name": "FileToPDF",
"email": "support@filetopdf.dev",
"url": "https://github.com/FileToPDF"
},
"repository": {
"type": "git",
"url": "https://github.com/FileToPDF/filetopdf-mcp.git"
},
"homepage": "https://filetopdf.dev",
"documentation": "https://filetopdf.dev/documentation",
"support": "https://github.com/FileToPDF/filetopdf-mcp/issues",
"icon": "assets/icon.png",
"server": {
"type": "node",
"entry_point": "dist/stdio.js",
"mcp_config": {
"command": "node",
"args": [
"${__dirname}/dist/stdio.js"
],
"env": {
"FILETOPDF_API_KEY": "${user_config.api_key}",
"FILETOPDF_OUTPUT_DIR": "${user_config.output_dir}"
}
}
},
"tools": [
{
"name": "get_account",
"description": "Check the API key: plan, remaining credits, subscription status. Free."
},
{
"name": "convert_file",
"description": "Convert a document at a public URL (DOCX, XLSX, PPTX, images, HTML, MD…) to PDF."
},
{
"name": "convert_html",
"description": "Render an HTML string to a pixel-perfect PDF via Chromium."
},
{
"name": "convert_markdown",
"description": "Render a Markdown string to a clean, styled PDF."
}
],
"keywords": [
"pdf",
"convert-to-pdf",
"html-to-pdf",
"markdown-to-pdf",
"docx-to-pdf",
"documents",
"productivity"
],
"license": "MIT",
"privacy_policies": [
"https://filetopdf.dev/privacy"
],
"compatibility": {
"platforms": [
"darwin",
"win32",
"linux"
],
"runtimes": {
"node": ">=18.0.0"
}
},
"user_config": {
"api_key": {
"type": "string",
"title": "FileToPDF API Key",
"description": "Get one free in one click at https://filetopdf.dev — 10 free conversions, no signup required.",
"sensitive": true,
"required": true
},
"output_dir": {
"type": "directory",
"title": "Save PDFs to folder (optional)",
"description": "If set, every converted PDF is also written to this folder.",
"required": false
}
}
}