mirror of
https://github.com/samanhappy/mcphub.git
synced 2025-12-24 02:39:19 -05:00
refactor: simplify Dockerfile by removing Python installation; update mcp_settings.json to use npx for time-mcp command
This commit is contained in:
@@ -1,15 +1,6 @@
|
||||
# Use Node.js LTS image with Python support
|
||||
FROM node:22-alpine
|
||||
|
||||
# Install Python and pip
|
||||
RUN apk add --no-cache \
|
||||
python3 \
|
||||
py3-pip \
|
||||
&& ln -sf python3 /usr/bin/python
|
||||
|
||||
# Create symbolic links for python commands
|
||||
RUN ln -sf /usr/bin/pip3 /usr/bin/pip
|
||||
|
||||
# Set working directory
|
||||
WORKDIR /app
|
||||
|
||||
|
||||
@@ -1,8 +1,8 @@
|
||||
{
|
||||
"mcpServers": {
|
||||
"time": {
|
||||
"command": "python",
|
||||
"args": ["-m", "mcp_server_time", "--local-timezone=America/New_York"]
|
||||
"time-mcp": {
|
||||
"command": "npx",
|
||||
"args": ["-y", "time-mcp"]
|
||||
},
|
||||
"sequential-thinking": {
|
||||
"command": "npx",
|
||||
|
||||
Reference in New Issue
Block a user