-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathmcp-config.json
More file actions
60 lines (60 loc) · 1.65 KB
/
mcp-config.json
File metadata and controls
60 lines (60 loc) · 1.65 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
{
"mcpServers": {
"lucidrag-api": {
"command": "npx",
"args": [
"-y",
"@anthropic-ai/mcp-server-fetch@latest"
],
"description": "LucidRAG API Testing - Use fetch tool to call localhost:5080/api/* endpoints",
"env": {
"LUCIDRAG_BASE_URL": "http://localhost:5080"
}
},
"lucidrag-ocr": {
"command": "dotnet",
"args": [
"run",
"--project",
"E:/source/lucidrag/src/Mostlylucid.ImageSummarizer.Cli/Mostlylucid.ImageSummarizer.Cli.csproj",
"-c",
"Release",
"--",
"{image}",
"--output",
"json",
"--pipeline",
"{pipeline}"
],
"description": "LucidRAG Image OCR and Analysis Tool",
"tools": [
{
"name": "extract_text_from_image",
"description": "Extract text from images (GIF, PNG, JPG, WebP) using advanced multi-frame OCR with temporal processing and spell-checking",
"parameters": {
"type": "object",
"properties": {
"image": {
"type": "string",
"description": "Path to the image file"
},
"pipeline": {
"type": "string",
"enum": [
"advancedocr",
"quality",
"simpleocr"
],
"default": "advancedocr",
"description": "OCR pipeline: advancedocr (fast, 2s), quality (best accuracy, 10s), simpleocr (basic)"
}
},
"required": [
"image"
]
}
}
]
}
}
}