Skip to main content
Glama
start-stdio.sh909 B
#!/bin/bash # # Start Multilead MCP Server in STDIO mode (for Claude Desktop/Code) # # This script starts the server with STDIO transport for local IDE integration. # Make sure your .env file is configured with MULTILEAD_API_KEY. # set -e SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)" PROJECT_ROOT="$(dirname "$SCRIPT_DIR")" cd "$PROJECT_ROOT" # Check if .env file exists if [ ! -f .env ]; then echo "Error: .env file not found. Copy .env.example to .env and configure it." exit 1 fi # Check if virtual environment exists if [ ! -d .venv ]; then echo "Error: Virtual environment not found. Run: uv venv or python -m venv .venv" exit 1 fi # Activate virtual environment source .venv/bin/activate # Set STDIO transport explicitly export TRANSPORT=stdio echo "Starting Multilead MCP Server in STDIO mode..." echo "Press Ctrl+C to stop" echo "" # Run server python server.py

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/vanman2024/multilead-mcp'

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