From 5ce411cb0e7cf783bec36d1069fd545db8836964 Mon Sep 17 00:00:00 2001 From: Richard Gebhardt Date: Fri, 10 Oct 2025 15:56:37 -0400 Subject: [PATCH] fix: filter servers from build/install for now Signed-off-by: Richard Gebhardt --- Makefile | 2 +- README.md | 9 +++++++-- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/Makefile b/Makefile index 6e34e7d..5b2fa93 100644 --- a/Makefile +++ b/Makefile @@ -1,4 +1,4 @@ -SUBDIRS := $(wildcard src/*) +SUBDIRS := $(filter-out src/dbtools-mcp-server src/mysql-mcp-server src/oci-pricing-mcp-server,$(wildcard src/*)) .PHONY: test format diff --git a/README.md b/README.md index a2eff1e..bbe7c13 100644 --- a/README.md +++ b/README.md @@ -52,10 +52,15 @@ Always see the respective `src//README.md` for detailed setup instructio ```sh python3 -m venv venv source venv/bin/activate # On Windows: venv\Scripts\activate - pip install -r requirements.txt + pip install -r requirements-dev.txt ``` *(For Node.js/Java/other servers, follow respective instructions in that server’s README)* -` + +5. **Build and Install servers in the current virtual environment** + ```sh + make build + make install + ``` ## Authentication