Skip to content

Commit b9f4505

Browse files
committed
Rename 'bioapi_mcp' to 'mcp_bioapi' in deployment files for consistency
1 parent 27b94be commit b9f4505

3 files changed

Lines changed: 6 additions & 6 deletions

File tree

DEPLOYING.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -121,8 +121,8 @@ Basic MCP deployment checks:
121121
```bash
122122
docker compose config
123123
docker compose config --services
124-
docker compose exec bioapi_mcp /usr/local/bin/python3 -c "import bioapi_sdk.mcp_server; print('bioapi mcp import ok')"
125-
docker compose logs bioapi_mcp
124+
docker compose exec mcp_bioapi /usr/local/bin/python3 -c "import bioapi_sdk.mcp_server; print('bioapi mcp import ok')"
125+
docker compose logs mcp_bioapi
126126
curl -i -X POST https://bioapi.multiomix.org/mcp \
127127
-H 'Content-Type: application/json' \
128128
-H 'Accept: application/json, text/event-stream' \
@@ -143,7 +143,7 @@ To check the different services' status you can run:
143143
docker-compose logs <service>
144144
```
145145

146-
Where *\<service\>* could be `nginx_bioapi`, `web_bioapi`, `bioapi_mcp`, or `mongo_bioapi`.
146+
Where *\<service\>* could be `nginx_bioapi`, `web_bioapi`, `mcp_bioapi`, or `mongo_bioapi`.
147147

148148
## Update genomic databases
149149

config/nginx/conf.d/default.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ upstream web {
88
}
99

1010
upstream mcp {
11-
server bioapi_mcp:8001;
11+
server mcp_bioapi:8001;
1212
}
1313

1414
server {

docker-compose_dist.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ services:
4242
start_period: 60s
4343

4444
# BioAPI MCP server
45-
bioapi_mcp:
45+
mcp_bioapi:
4646
image: omicsdatascience/bio-api:1.5.0
4747
restart: always
4848
depends_on:
@@ -80,7 +80,7 @@ services:
8080
depends_on:
8181
web_bioapi:
8282
condition: service_healthy
83-
bioapi_mcp:
83+
mcp_bioapi:
8484
condition: service_healthy
8585
volumes:
8686
- ./config/nginx/conf.d:/etc/nginx/conf.d

0 commit comments

Comments
 (0)