Skip to main content
Glama

tavily-search-mcp-server

by apappascs
FROM node:22.12-alpine AS builder COPY . /app/ COPY tsconfig.json /tsconfig.json WORKDIR /app RUN --mount=type=cache,id=npm-cache,target=/root/.npm npm install FROM node:22-alpine AS release WORKDIR /app COPY --from=builder /app/dist /app/dist COPY --from=builder /app/package.json /app/package.json COPY --from=builder /app/package-lock.json /app/package-lock.json ENV NODE_ENV=production RUN npm ci --ignore-scripts --omit-dev # Expose the port for SSE EXPOSE 3001 # Allow running either stdio or sse server based on an environment variable CMD if [ "$TRANSPORT" = "sse" ]; then \ node dist/sse.js; \ else \ node dist/index.js; \ fi

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/apappascs/tavily-search-mcp-server'

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