Skip to main content
Glama

Sentice MCP Server

Official
by sentice
docker-compose.yml1.49 kB
version: "3.8" services: # ----------------------------------------------------- # MCP SERVER # ----------------------------------------------------- mcp-server: container_name: sentice-mcp build: context: . dockerfile: Dockerfile volumes: - .:/usr/src/app - /usr/src/app/node_modules environment: - PORT=3000 - BACKEND_URL=${BACKEND_URL} ports: - "3000:3000" restart: always networks: - food2 healthcheck: test: ["CMD", "curl", "-f", "http://localhost:3000/health"] interval: 10s timeout: 5s retries: 5 start_period: 10s # ----------------------------------------------------- # MCP INSPECTOR (UI + PROXY) # ----------------------------------------------------- mcp-inspector: image: node:20 container_name: mcp-inspector working_dir: /workspace command: > sh -c " npm install -g @modelcontextprotocol/inspector && mcp-inspector http://sentice-mcp:3000/mcp --transport streamable-http " depends_on: mcp-server: condition: service_healthy ports: - "6274:6274" - "6277:6277" environment: - HOST=0.0.0.0 - SERVER_HOST=0.0.0.0 - CLIENT_HOST=0.0.0.0 restart: always networks: - food2 # ----------------------------------------------------- # EXTERNAL NETWORK # ----------------------------------------------------- networks: food2: external: true

Latest Blog Posts

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/sentice/mcp-server'

If you have feedback or need assistance with the MCP directory API, please join our Discord server