We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent b1b8c60 commit b0aa621Copy full SHA for b0aa621
2 files changed
Makefile
@@ -1,4 +1,4 @@
1
-SUBDIRS := $(wildcard src/*)
+SUBDIRS := $(filter-out src/dbtools-mcp-server src/mysql-mcp-server src/oci-pricing-mcp-server,$(wildcard src/*))
2
3
.PHONY: test format
4
README.md
@@ -52,10 +52,15 @@ Always see the respective `src/<server>/README.md` for detailed setup instructio
52
```sh
53
python3 -m venv venv
54
source venv/bin/activate # On Windows: venv\Scripts\activate
55
- pip install -r requirements.txt
+ pip install -r requirements-dev.txt
56
```
57
*(For Node.js/Java/other servers, follow respective instructions in that server’s README)*
58
-`
+
59
+5. **Build and Install servers in the current virtual environment**
60
+ ```sh
61
+ make build
62
+ make install
63
+ ```
64
65
## Authentication
66
0 commit comments