-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.json
More file actions
57 lines (57 loc) · 1.68 KB
/
Copy pathserver.json
File metadata and controls
57 lines (57 loc) · 1.68 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.HelgDemidov/refigure",
"description": "Convert DOCX/XLSX to Markdown — native chart-data extraction, optional VLM for figures",
"version": "0.3.5",
"repository": {
"url": "https://github.com/HelgDemidov/refigure",
"source": "github"
},
"packages": [
{
"registryType": "pypi",
"identifier": "refigure",
"version": "0.3.5",
"transport": {
"type": "stdio"
}
},
{
"registryType": "pypi",
"identifier": "refigure",
"version": "0.3.5",
"transport": {
"type": "streamable-http",
"url": "http://{--mcp-http-host}:{--mcp-http-port}/mcp"
},
"packageArguments": [
{
"type": "named",
"name": "--transport",
"value": "http",
"description": "Use Streamable HTTP transport instead of the stdio default"
},
{
"type": "named",
"name": "--mcp-auth-token-file",
"isRequired": true,
"format": "filepath",
"description": "Bearer-token file (one 'token = caller_id' pair per line) — refigure-mcp refuses to start over HTTP without one"
},
{
"type": "named",
"name": "--mcp-http-host",
"default": "127.0.0.1",
"description": "Bind host — loopback by default; a non-loopback value is accepted but logs a startup warning"
},
{
"type": "named",
"name": "--mcp-http-port",
"format": "number",
"default": "8000",
"description": "Bind port"
}
]
}
]
}