Skip to main content
Glama

Bitcoin MCP Server

# Generated by https://smithery.ai. See: https://smithery.ai/docs/config#dockerfile # Use Node.js 18 LTS (Gallium) as the base image FROM node:18-bullseye-slim AS builder # Set the working directory in the container WORKDIR /app # Copy the package.json and package-lock.json to the working directory COPY package*.json ./ # Install the dependencies RUN npm install # Copy the entire application to the working directory COPY . . # Build the application RUN npm run build # Use a smaller base image for production FROM node:18-bullseye-slim AS production # Set the working directory in the container WORKDIR /app # Copy the built files and dependencies from the builder stage COPY --from=builder /app/build ./build COPY --from=builder /app/node_modules ./node_modules COPY package.json ./ # Set environment variables ENV NODE_ENV=production ENV SERVER_MODE=stdio # Expose the port the app runs on EXPOSE 3000 # Start the application CMD ["node", "build/cli.js"]

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/AbdelStark/bitcoin-mcp'

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