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
32 lines (25 loc) · 707 Bytes
/
Taskfile.yml
File metadata and controls
32 lines (25 loc) · 707 Bytes
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
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}}
validate:
desc: Validate a server
cmd: go run ./cmd/validate {{.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