-
Notifications
You must be signed in to change notification settings - Fork 21
Expand file tree
/
Copy pathserver.json
More file actions
58 lines (58 loc) · 1.81 KB
/
server.json
File metadata and controls
58 lines (58 loc) · 1.81 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.jpicklyk/task-orchestrator",
"title": "MCP Task Orchestrator",
"description": "Server-enforced workflow discipline for AI agents: work items, dependency graphs, quality gates",
"repository": {
"url": "https://github.com/jpicklyk/task-orchestrator.git",
"source": "github"
},
"version": "3.2.0",
"packages": [
{
"registryType": "oci",
"identifier": "ghcr.io/jpicklyk/task-orchestrator:latest",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "DATABASE_PATH",
"description": "SQLite database file path (default: data/current-tasks.db)",
"isRequired": false,
"isSecret": false
},
{
"name": "USE_FLYWAY",
"description": "Enable Flyway database migrations (default: true)",
"isRequired": false,
"isSecret": false
},
{
"name": "AGENT_CONFIG_DIR",
"description": "Directory containing .taskorchestrator/config.yaml for workflow schemas (default: working dir)",
"isRequired": false,
"isSecret": false
},
{
"name": "MCP_TRANSPORT",
"description": "Transport mode: stdio (default) or http",
"isRequired": false,
"isSecret": false
},
{
"name": "MCP_HTTP_PORT",
"description": "HTTP port when using http transport (default: 3001)",
"isRequired": false,
"isSecret": false
},
{
"name": "LOG_LEVEL",
"description": "Logging level: DEBUG, INFO, WARN, ERROR (default: INFO)",
"isRequired": false,
"isSecret": false
}
]
}
]
}