Skip to main content
Glama

Codebase MCP Server

by Ravenight13
nuclear_reset.sh907 B
#!/bin/bash # NUCLEAR OPTION: Drop entire database and recreate from scratch set -e PSQL="/Applications/Postgres.app/Contents/Versions/latest/bin/psql" DB="codebase_mcp" SQL_FILE="/Users/cliffclarke/Claude_Code/codebase-mcp/init_tables.sql" echo "☢️ NUCLEAR RESET: Dropping entire database: $DB" echo "" read -p "Are you sure? This will delete EVERYTHING. (yes/no): " confirm if [ "$confirm" != "yes" ]; then echo "Aborted." exit 0 fi echo "" echo "Dropping database..." $PSQL -d postgres -c "DROP DATABASE IF EXISTS $DB;" 2>/dev/null || true echo "Creating database..." $PSQL -d postgres -c "CREATE DATABASE $DB OWNER cliffclarke;" echo "Recreating tables..." $PSQL -d $DB -f $SQL_FILE > /dev/null 2>&1 echo "" echo "✅ Nuclear reset complete!" echo "" echo "Tables created:" $PSQL -d $DB -c "\dt" | grep public echo "" echo "⚠️ IMPORTANT: Restart Claude Desktop to reconnect!"

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/Ravenight13/codebase-mcp'

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