Skip to content

Commit b0aa621

Browse files
authored
fix: filter servers from build/install for now (#23)
Signed-off-by: Richard Gebhardt <[email protected]>
1 parent b1b8c60 commit b0aa621

File tree

2 files changed

+8
-3
lines changed

2 files changed

+8
-3
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: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -52,10 +52,15 @@ Always see the respective `src/<server>/README.md` for detailed setup instructio
5252
```sh
5353
python3 -m venv venv
5454
source venv/bin/activate # On Windows: venv\Scripts\activate
55-
pip install -r requirements.txt
55+
pip install -r requirements-dev.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)