We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/TheAlchemist6/codecompass-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
start-mcp.sh•481 B
#!/bin/bash
# CodeCompass MCP Server Startup Script
# This script starts the CodeCompass MCP server with proper configuration
echo "🚀 Starting CodeCompass MCP Server..."
# Set environment variables
export NODE_ENV=production
# Optional: Set GitHub token if available (improves rate limits)
# export GITHUB_TOKEN=your_github_token_here
# Change to the server directory
cd "$(dirname "$0")"
# Start the server
node build/index.js
echo "🛑 CodeCompass MCP Server stopped."