-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathserver.json
More file actions
53 lines (53 loc) · 1.98 KB
/
Copy pathserver.json
File metadata and controls
53 lines (53 loc) · 1.98 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
{
"$schema": "https://static.modelcontextprotocol.io/schemas/2025-12-11/server.schema.json",
"name": "io.github.OpenAdaptAI/openadapt-agent",
"title": "OpenAdapt Agent (openadapt-flow bridge)",
"description": "Local Beta bridge for governed openadapt-flow workflows and attended actions.",
"websiteUrl": "https://docs.openadapt.ai",
"repository": {
"url": "https://github.com/OpenAdaptAI/openadapt-agent",
"source": "github"
},
"version": "2.0.2",
"packages": [
{
"registryType": "pypi",
"registryBaseUrl": "https://pypi.org",
"identifier": "openadapt-agent",
"version": "2.0.2",
"runtimeHint": "uvx",
"transport": {
"type": "stdio"
},
"packageArguments": [
{
"type": "positional",
"valueHint": "subcommand",
"value": "serve",
"description": "Serve a directory of compiled bundles over MCP (stdio)."
},
{
"type": "named",
"name": "--bundles",
"valueHint": "bundles_dir",
"format": "filepath",
"isRequired": true,
"description": "Directory of compiled openadapt-flow bundles (one bundle, or a directory whose immediate subdirectories are bundles). This is the operator's own private artifact and is never shipped with the package."
}
],
"environmentVariables": [
{
"name": "OPENADAPT_BUNDLE_KEY",
"description": "Decryption key for encrypted-at-rest bundles (workflow.json.enc). Omit for plaintext bundles.",
"isRequired": false,
"isSecret": true
}
]
}
],
"_meta": {
"io.modelcontextprotocol.registry/publisher-provided": {
"notes": "PHI-safe inspection and Needs Attention tools are available by default. Run tools require --allow-run. Continue, Skip, Teach, and Escalate require --allow-attended-actions; Continue and Skip additionally require a qualified deployment --config. See docs/DISTRIBUTION.md."
}
}
}