-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathserver.json
More file actions
58 lines (58 loc) · 1.84 KB
/
server.json
File metadata and controls
58 lines (58 loc) · 1.84 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.CodeLogicIncEngineering/codelogic-mcp-server",
"description": "An MCP Server to utilize Codelogic's rich software dependency data in your AI programming assistant.",
"repository": {
"url": "https://github.com/CodeLogicIncEngineering/codelogic-mcp-server",
"source": "github"
},
"version": "1.1.1",
"packages": [
{
"registryType": "pypi",
"registryBaseUrl": "https://pypi.org",
"identifier": "codelogic-mcp-server",
"version": "1.1.1",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"description": "url to the CodeLogic server e.g. https://myco.app.codelogic.com",
"isRequired": true,
"format": "string",
"isSecret": false,
"name": "CODELOGIC_SERVER_HOST"
},
{
"description": "CodeLogic server username",
"isRequired": true,
"format": "string",
"isSecret": false,
"name": "CODELOGIC_USERNAME"
},
{
"description": "CodeLogic server password",
"isRequired": true,
"format": "string",
"isSecret": true,
"name": "CODELOGIC_PASSWORD"
},
{
"description": "the workspace name that your code is scanned into",
"isRequired": true,
"format": "string",
"isSecret": false,
"name": "CODELOGIC_WORKSPACE_NAME"
},
{
"description": "When enabled, additional debug files such as timing_log.txt and impact_data*.json will be generated. Defaults to false",
"isRequired": false,
"format": "string",
"isSecret": false,
"name": "CODELOGIC_DEBUG_MODE"
}
]
}
]
}