Glama
Chat
MCP
Gateway
Models
Pricing
Community
Sign In
Chat
MCP
Gateway
Models
Pricing
Community
Sign In
Glama
MCP
Servers
Farcaster MCP Server
Claim
by
manimohans
GitHub
Social Media
JavaScript
1
Apple
Reddit
Discord
Overview
Inspect
Schema
Related Servers
Reviews
Score
Need Help?
View Source Code
Report Issue
src
Dockerfile
.gitignore
package.json
README.md
smithery.json
smithery.yaml
tsconfig.json
FROM node:18-alpine WORKDIR /app # Copy package files COPY package*.json ./ # Install dependencies RUN npm install # Copy source code COPY . . # Build the project RUN npm run build # Command to run the server CMD ["node", "build/index.js"]