Skip to main content
Glama

Algorand MCP Server

by Tairon-ai
Dockerfile609 B
FROM node:lts-alpine # Create app directory WORKDIR /usr/src/app # Install app dependencies # Copy package files COPY package*.json ./ # Install dependencies RUN npm ci --only=production # Bundle app source COPY . . # Expose port 8080 for HTTP server EXPOSE 8080 # Set environment variables ENV PORT=8080 ENV NODE_ENV=production # Health check HEALTHCHECK --interval=30s --timeout=3s --start-period=5s --retries=3 \ CMD node -e "require('http').get('http://localhost:8080/health', (r) => {r.statusCode === 200 ? process.exit(0) : process.exit(1)})" # Start the HTTP server CMD ["node", "server.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/Tairon-ai/algorand-mcp'

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