forked from giancarloerra/SocratiCode
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.json
More file actions
78 lines (78 loc) · 2.64 KB
/
server.json
File metadata and controls
78 lines (78 loc) · 2.64 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.giancarloerra/socraticode",
"description": "MCP server for enterprise local codebase indexing, semantic search, and code dependency graphs.",
"repository": {
"url": "https://github.com/giancarloerra/socraticode",
"source": "github"
},
"version": "1.0.1",
"packages": [
{
"registryType": "npm",
"identifier": "socraticode",
"version": "1.0.1",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "EMBEDDING_PROVIDER",
"description": "Embedding provider to use: ollama (default), openai, or google",
"isRequired": false,
"format": "string",
"isSecret": false
},
{
"name": "OPENAI_API_KEY",
"description": "API key for OpenAI embeddings (required only when EMBEDDING_PROVIDER=openai)",
"isRequired": false,
"format": "string",
"isSecret": true
},
{
"name": "GOOGLE_API_KEY",
"description": "API key for Google embeddings (required only when EMBEDDING_PROVIDER=google)",
"isRequired": false,
"format": "string",
"isSecret": true
},
{
"name": "OLLAMA_URL",
"description": "URL of the Ollama server (default: auto-detected; Docker-managed or http://localhost:11434)",
"isRequired": false,
"format": "string",
"isSecret": false
},
{
"name": "EMBEDDING_MODEL",
"description": "Embedding model name (defaults per provider: nomic-embed-text for ollama, text-embedding-3-small for openai, gemini-embedding-001 for google)",
"isRequired": false,
"format": "string",
"isSecret": false
},
{
"name": "QDRANT_MODE",
"description": "Qdrant mode: managed (default, Docker-managed) or external (user-provided instance)",
"isRequired": false,
"format": "string",
"isSecret": false
},
{
"name": "QDRANT_URL",
"description": "Full URL for remote/cloud Qdrant (e.g. https://xyz.cloud.qdrant.io:6333). Only needed when QDRANT_MODE=external",
"isRequired": false,
"format": "string",
"isSecret": false
},
{
"name": "QDRANT_API_KEY",
"description": "API key for remote Qdrant instance. Only needed when QDRANT_MODE=external",
"isRequired": false,
"format": "string",
"isSecret": true
}
]
}
]
}