-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathserver.json
More file actions
58 lines (58 loc) · 1.85 KB
/
Copy pathserver.json
File metadata and controls
58 lines (58 loc) · 1.85 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.PSPDFKit/nutrient-document-engine-mcp-server",
"title": "Nutrient Document Engine MCP Server",
"description": "MCP server for self-hosted Nutrient Document Engine: extract, edit, redact, and annotate documents.",
"version": "0.0.3",
"repository": {
"url": "https://github.com/PSPDFKit/nutrient-document-engine-mcp-server",
"source": "github"
},
"packages": [
{
"registryType": "npm",
"identifier": "@nutrient-sdk/document-engine-mcp-server",
"version": "0.0.3",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "DOCUMENT_ENGINE_BASE_URL",
"description": "Base URL of your Nutrient Document Engine instance (e.g. http://localhost:5000).",
"isRequired": true,
"isSecret": false,
"format": "string"
},
{
"name": "DOCUMENT_ENGINE_API_AUTH_TOKEN",
"description": "API auth token for your Document Engine instance.",
"isRequired": true,
"isSecret": true,
"format": "string"
},
{
"name": "DASHBOARD_USERNAME",
"description": "Optional: enables the local status dashboard (Basic auth username).",
"isRequired": false,
"isSecret": false,
"format": "string"
},
{
"name": "DASHBOARD_PASSWORD",
"description": "Optional: local status dashboard password.",
"isRequired": false,
"isSecret": true,
"format": "string"
},
{
"name": "LOG_LEVEL",
"description": "Optional log level (default info).",
"isRequired": false,
"isSecret": false,
"format": "string"
}
]
}
]
}