We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/gander-tools/osm-tagging-schema-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
# OSS-Fuzz build Dockerfile
# This is prepared for potential future OSS-Fuzz submission
# Currently using property-based testing with fast-check
FROM gcr.io/oss-fuzz-base/base-builder-javascript
# Install Node.js (latest LTS)
RUN curl -fsSL https://deb.nodesource.com/setup_24.x | bash - && \
apt-get install -y nodejs
# Copy project files
COPY . $SRC/osm-tagging-schema-mcp
WORKDIR $SRC/osm-tagging-schema-mcp
# Install dependencies
RUN npm ci
# Build the project
RUN npm run build