-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.json
More file actions
37 lines (37 loc) · 1.24 KB
/
server.json
File metadata and controls
37 lines (37 loc) · 1.24 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.saajunaid/junai-mcp",
"title": "junai Pipeline MCP",
"description": "Agentic pipeline orchestration MCP server for AI-driven development workflows.",
"repository": {
"url": "https://github.com/saajunaid/junai",
"source": "github"
},
"version": "0.1.1",
"packages": [
{
"registryType": "pypi",
"identifier": "junai-mcp",
"version": "0.1.1",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "PIPELINE_STATE_PATH",
"description": "Path to pipeline-state.json. Defaults to .github/pipeline-state.json relative to the workspace root (detected by searching upward from the current directory for a .github folder).",
"isRequired": false,
"format": "string",
"isSecret": false
},
{
"name": "JUNAI_WORKSPACE_ROOT",
"description": "Explicit workspace root path override. Use if automatic detection (searching upward for .github) does not find the correct root.",
"isRequired": false,
"format": "string",
"isSecret": false
}
]
}
]
}