Skip to content

Commit 5148339

Browse files
committed
fix: filter servers from build/install for now
Signed-off-by: Richard Gebhardt <[email protected]>
1 parent b1b8c60 commit 5148339

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
SUBDIRS := $(wildcard src/*)
1+
SUBDIRS := $(filter-out src/dbtools-mcp-server src/mysql-mcp-server src/oci-pricing-mcp-server,$(wildcard src/*))
22

33
.PHONY: test format
44

README.md

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,12 @@ Always see the respective `src/<server>/README.md` for detailed setup instructio
5555
pip install -r requirements.txt
5656
```
5757
*(For Node.js/Java/other servers, follow respective instructions in that server’s README)*
58-
`
58+
59+
5. **Build and Install servers in the current virtual environment**
60+
```sh
61+
make build
62+
make install
63+
```
5964
6065
## Authentication
6166

0 commit comments

Comments
 (0)