Skip to main content
Glama

Claude Code MCP Server

by steipete
start.sh642 B
#!/bin/bash # Set environment variables if needed # export CLAUDE_CLI_PATH="/custom/path/to/claude" export MCP_CLAUDE_DEBUG="false" # Disable debug logging for default # Get the directory of this script SCRIPT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )" # Change to the script directory cd "$SCRIPT_DIR" # Run the compiled JavaScript file for npm packages OR TypeScript for local development if [ -f "dist/server.js" ]; then node dist/server.js elif [ -f "src/server.ts" ] && command -v tsx >/dev/null 2>&1; then npx tsx src/server.ts else echo "Error: Neither dist/server.js nor src/server.ts found" exit 1 fi

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/steipete/claude-code-mcp'

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