Skip to main content
Glama

Synapse MCP Server

MIT License
5
  • Linux
  • Apple
Dockerfile782 B
FROM python:3.10-slim WORKDIR /app # Install system dependencies for cryptographic libraries RUN apt-get update && apt-get install -y \ build-essential \ libffi-dev \ libssl-dev \ && rm -rf /var/lib/apt/lists/* # Create an unprivileged user to run the application RUN groupadd --system synapse && useradd --system --gid synapse --home /app synapse # Copy the project files COPY . . # Install the package in development mode RUN pip install --no-cache-dir -e . # Ensure application files are owned by the runtime user RUN chown -R synapse:synapse /app # Drop root privileges for runtime USER synapse # Expose the port EXPOSE 9000 # Set environment variables ENV HOST="0.0.0.0" ENV PORT="9000" # Command to run the server CMD ["python", "-m", "synapse_mcp"]

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/susheel/synapse-mcp'

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