Skip to content

Commit eb36d41

Browse files
committed
Merge remote-tracking branch 'origin/main' into adamj/docker-hub-to-oci
2 parents 8db1d29 + 12dc4c3 commit eb36d41

File tree

21 files changed

+59
-59
lines changed

21 files changed

+59
-59
lines changed

.vscode/launch.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,10 @@
1818
"type": "go",
1919
"request": "launch",
2020
"mode": "auto",
21-
"program": "${workspaceFolder}/tools/publisher/main.go",
21+
"program": "${workspaceFolder}/cmd/publisher/main.go",
2222
"args": [
2323
"-registry-url=http://localhost:8080",
24-
"-mcp-file=${workspaceFolder}/tools/publisher/server.json",
24+
"-mcp-file=${workspaceFolder}/cmd/publisher/server.json",
2525
],
2626
}
2727
]

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ build: ## Build the registry application
1010
go build -o bin/registry ./cmd/registry
1111

1212
publisher: ## Build the publisher tool
13-
cd tools/publisher && ./build.sh
13+
cd cmd/publisher && ./build.sh
1414

1515
# Test targets
1616
test-unit: ## Run unit tests with coverage
@@ -64,7 +64,7 @@ dev-local: ## Run registry locally
6464
clean: ## Clean build artifacts and coverage files
6565
rm -rf bin
6666
rm -f coverage.out coverage.html
67-
cd tools/publisher && rm -f publisher
67+
cd cmd/publisher && rm -f publisher
6868

6969

7070
.DEFAULT_GOAL := help

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -103,10 +103,10 @@ To publish a server, we've built a simple CLI. You can use it with:
103103
make publisher
104104

105105
# Use it!
106-
./tools/publisher/bin/mcp-publisher --help
106+
./cmd/publisher/bin/mcp-publisher --help
107107
```
108108

109-
See [the publisher README](./tools/publisher/README.md) for more details.
109+
See [the publisher README](./cmd/publisher/README.md) for more details.
110110

111111
#### Other commands
112112

@@ -127,6 +127,7 @@ For Claude and other AI tools: Always prefer make targets over custom commands w
127127

128128
```
129129
├── cmd/ # Application entry points
130+
│ └── publisher/ # Server publishing tool
130131
├── data/ # Seed data
131132
├── deploy/ # Deployment configuration (Pulumi)
132133
├── docs/ # Technical documentation
@@ -147,7 +148,6 @@ For Claude and other AI tools: Always prefer make targets over custom commands w
147148
├── scripts/ # Development and testing scripts
148149
├── tests/ # Integration tests
149150
└── tools/ # CLI tools and utilities
150-
├── publisher/ # Server publishing tool
151151
└── validate-*.sh # Schema validation tools
152152
```
153153

File renamed without changes.

0 commit comments

Comments
 (0)