-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathserver.json
More file actions
44 lines (44 loc) · 1.38 KB
/
Copy pathserver.json
File metadata and controls
44 lines (44 loc) · 1.38 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.CTRLRun/ctrlrun-mcp-operator",
"title": "ctrlrun Operator",
"description": "Answer ctrlrun approvals from an MCP client: list what is held, inspect it, grant or deny.",
"websiteUrl": "https://docs.ctrlrun.dev/mcp/overview",
"repository": {
"url": "https://github.com/CTRLRun/ctrlrun",
"source": "github"
},
"version": "0.12.2",
"packages": [
{
"registryType": "pypi",
"registryBaseUrl": "https://pypi.org",
"identifier": "ctrlrun",
"version": "0.12.2",
"runtimeHint": "uvx",
"transport": {
"type": "stdio"
},
"packageArguments": [
{
"type": "positional",
"value": "mcp-operator",
"description": "Serve the operator's own commands as MCP tools."
},
{
"type": "named",
"name": "--stdio",
"description": "Speak MCP on stdin and stdout, open no socket, and record each answer under the OS login of the person whose client launched this."
}
],
"environmentVariables": [
{
"name": "CTRLRUN_CONFIG",
"description": "Path to the ctrlrun.yaml your agents run against. The store is found beside it.",
"isRequired": true,
"format": "filepath"
}
]
}
]
}