-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathserver.json
More file actions
54 lines (54 loc) · 1.87 KB
/
server.json
File metadata and controls
54 lines (54 loc) · 1.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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.carbone/carbone-mcp",
"title": "Carbone MCP",
"description": "Generate PDF/DOCX/XLSX/PPTX from templates+JSON. Convert Office/HTML/MD to PDF. Universal templating",
"version": "1.1.2",
"websiteUrl": "https://carbone.io",
"license": "Apache-2.0",
"icons": [{
"mimeType": "image/svg+xml",
"src": "https://raw.githubusercontent.com/carboneio/carbone/refs/heads/master/doc/carbone_icon_large.svg"
}],
"repository": {
"url": "https://github.com/carboneio/carbone-mcp",
"source": "github"
},
"remotes": [
{
"type": "streamable-http",
"url": "https://mcp.carbone.io",
"description": "Requires a Carbone API key passed as a Bearer token in the Authorization header. Get yours at https://account.carbone.io",
"authentication": {
"type": "header",
"header": "Authorization"
}
}
],
"packages": [
{
"registryType": "npm",
"identifier": "carbone-mcp",
"version": "1.1.2",
"runtimeHint": "npx",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "CARBONE_API_KEY",
"description": "Your Carbone API key from https://account.carbone.io. Required when using the Carbone cloud API. If CARBONE_BASE_URL points to an on-premise server, authentication is not required and this can be left empty.",
"isRequired": true,
"isSecret": true
},
{
"name": "CARBONE_BASE_URL",
"description": "Custom Carbone API base URL for on-premise deployments. Defaults to https://api.carbone.io. When set to a custom URL, CARBONE_API_KEY is not required.",
"default": "https://api.carbone.io",
"isRequired": false,
"isSecret": false
}
]
}
]
}