-
Notifications
You must be signed in to change notification settings - Fork 16
Expand file tree
/
Copy pathserver.json
More file actions
104 lines (104 loc) · 3.08 KB
/
server.json
File metadata and controls
104 lines (104 loc) · 3.08 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.shinpr/sub-agents-mcp",
"description": "MCP server for delegating tasks to specialized AI assistants in Cursor, Claude, and Gemini",
"vendor": "Shinsuke Kagawa",
"license": "MIT",
"repository": {
"url": "https://github.com/shinpr/sub-agents-mcp",
"source": "github"
},
"version": "0.5.3",
"packages": [
{
"registryType": "npm",
"registryBaseUrl": "https://registry.npmjs.org",
"identifier": "sub-agents-mcp",
"version": "0.5.3",
"transport": {
"type": "stdio"
},
"environmentVariables": [
{
"name": "AGENTS_DIR",
"description": "Absolute path to the directory containing agent definition files (.md or .txt)",
"isRequired": true,
"format": "string",
"isSecret": false
},
{
"name": "AGENT_TYPE",
"description": "Type of AI CLI to use: 'cursor', 'claude', or 'gemini'",
"isRequired": true,
"format": "string",
"isSecret": false
},
{
"name": "EXECUTION_TIMEOUT_MS",
"description": "Maximum execution time for agents in milliseconds (default: 300000, max: 600000)",
"isRequired": false,
"format": "string",
"isSecret": false
},
{
"name": "SESSION_ENABLED",
"description": "Enable session management to maintain execution history across agent calls (default: false)",
"isRequired": false,
"format": "string",
"isSecret": false
},
{
"name": "SESSION_DIR",
"description": "Directory path for storing session files (default: .mcp-sessions in current working directory)",
"isRequired": false,
"format": "string",
"isSecret": false
},
{
"name": "SESSION_RETENTION_DAYS",
"description": "Number of days to retain session history before automatic cleanup (default: 7)",
"isRequired": false,
"format": "string",
"isSecret": false
},
{
"name": "AGENTS_SETTINGS_PATH",
"description": "Path to CLI settings file/directory. Claude: --settings arg, Cursor: CURSOR_CONFIG_DIR, Codex: CODEX_HOME. Gemini not supported.",
"isRequired": false,
"format": "string",
"isSecret": false
}
],
"features": {
"tools": {
"supported": true,
"list": [
"run_agent"
]
},
"prompts": {
"supported": false
},
"resources": {
"supported": true
}
}
}
],
"tags": [
"mcp",
"mcp-server",
"model-context-protocol",
"sub-agents",
"ai-agents",
"claude-code",
"cursor",
"gemini",
"codex",
"llm",
"cli",
"agent-orchestration"
],
"homepage": "https://github.com/shinpr/sub-agents-mcp",
"documentation": "https://github.com/shinpr/sub-agents-mcp#readme"
}