Skip to main content
Glama

Freedcamp MCP Server

docker-wrapper.sh826 B
#!/bin/bash # Wrapper script for running Freedcamp MCP in Docker # This script is used by Claude Desktop to communicate with the containerized MCP server # Check if API credentials are provided as arguments or environment variables if [ -n "$1" ] && [ -n "$2" ]; then export FREEDCAMP_API_KEY="$1" export FREEDCAMP_API_SECRET="$2" fi # Ensure the image is built docker build -t freedcamp-mcp:latest "$(dirname "$0")" 2>/dev/null # Run the container interactively with stdio forwarding # --rm: Remove container after exit # -i: Keep stdin open (required for MCP) # --log-driver none: Disable logging to prevent interference with stdio exec docker run --rm -i \ --log-driver none \ -e FREEDCAMP_API_KEY="${FREEDCAMP_API_KEY}" \ -e FREEDCAMP_API_SECRET="${FREEDCAMP_API_SECRET}" \ freedcamp-mcp:latest

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/BluePointDigital/freedcamp-mcp-server'

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