-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathserver.json
More file actions
39 lines (39 loc) · 1.12 KB
/
Copy pathserver.json
File metadata and controls
39 lines (39 loc) · 1.12 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.NameetP/pdfmux",
"title": "pdfmux",
"description": "PDF-to-Markdown router. Per-page backend selection + confidence scoring for RAG ingestion.",
"version": "1.5.1",
"repository": {
"url": "https://github.com/NameetP/pdfmux",
"source": "github"
},
"websiteUrl": "https://pdfmux.com",
"packages": [
{
"registryType": "pypi",
"identifier": "pdfmux",
"version": "1.5.0",
"transport": {
"type": "stdio"
},
"runtimeHint": "pdfmux",
"runtimeArguments": [
{
"type": "positional",
"value": "serve",
"isRequired": true
}
],
"environmentVariables": [
{
"name": "GEMINI_API_KEY",
"description": "Optional Google AI API key. Enables the paid Gemini Flash fallback for pages where all local backends report low confidence. pdfmux runs 100% locally without this.",
"isRequired": false,
"isSecret": true,
"format": "string"
}
]
}
]
}