We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/microkorg/Codecks-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
setup.sh•825 B
#!/bin/bash
# Codecks MCP Setup Script (Mac/Linux)
echo "=== Codecks MCP Setup ==="
echo ""
# Install dependencies
echo "Installing dependencies..."
npm install
echo ""
# Create .env if it doesn't exist
if [ -f .env ]; then
echo ".env already exists, skipping."
else
cp .env.example .env
echo "Created .env from .env.example"
echo "Open .env in your editor and fill in your Codecks credentials."
echo ""
echo "You'll need:"
echo " 1. CODECKS_TOKEN - the 'at' cookie from your browser (see README)"
echo " 2. CODECKS_URL - your org URL, e.g. myteam.codecks.io"
echo " 3. CODECKS_USER_ID - your user ID (see README for how to find it)"
fi
echo ""
echo "Setup complete! Edit .env with your credentials, then add the MCP server to your Claude config."
echo "See README.md for configuration details."