#!/usr/bin/env pwsh
# Wrapper script to run the MCP server start script from scripts directory
param(
[switch]$SkipPrompt
)
# Get the directory of this script
$scriptPath = $MyInvocation.MyCommand.Path
$scriptDir = Split-Path $scriptPath -Parent
# Change to the script directory
Set-Location $scriptDir
# Run the actual server script with any parameters passed to this script
if ($SkipPrompt) {
& "$scriptDir\scripts\start_mcp_server.ps1" -SkipPrompt
} else {
& "$scriptDir\scripts\start_mcp_server.ps1"
}
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/JustTryAI/databricks-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server