forked from docker/mcp-registry
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathTaskfile.yml
More file actions
52 lines (40 loc) · 1.14 KB
/
Taskfile.yml
File metadata and controls
52 lines (40 loc) · 1.14 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
version: "3"
tasks:
create:
desc: Create a new mcp server definition
cmd: go run ./cmd/create {{.CLI_ARGS}}
build:
desc: Build a server image
cmd: go run ./cmd/build {{.CLI_ARGS}}
catalog:
desc: Generate a test catalog
cmd: go run ./cmd/catalog {{.CLI_ARGS}}
wizard:
desc: Run the wizard
cmd: go run ./cmd/wizard {{.CLI_ARGS}}
remote-wizard:
desc: Run the remote server wizard
cmd: go run ./cmd/remote-wizard {{.CLI_ARGS}}
validate:
desc: Validate a server
cmd: go run ./cmd/validate {{.CLI_ARGS}}
clean:
desc: Clean build artifacts for servers
cmd: go run ./cmd/clean {{.CLI_ARGS}}
ci:
desc: Run CI helper utilities
cmd: go run ./cmd/ci {{.CLI_ARGS}}
import:
desc: Import a server into the registry
cmd: docker mcp catalog import ./catalogs/{{.CLI_ARGS}}/catalog.yaml
reset:
desc: Reset the catalog
cmds:
- docker mcp catalog reset
- docker mcp catalog init
unittest:
desc: Run Go unit tests
cmd: go test ./...
security-reviewer:
desc: Run the security reviewer agent
cmd: go run ./cmd/security-reviewer {{.CLI_ARGS}}