We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/jaskirat1616/fusion360-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
start_server.sh•495 B
#!/bin/bash
# Start FusionMCP Server
echo "🚀 Starting FusionMCP Server..."
# Activate virtual environment if it exists
if [ -d "venv" ]; then
source venv/bin/activate
fi
# Check if config exists
if [ ! -f "config.json" ]; then
echo "⚠️ config.json not found! Copying from example..."
cp examples/example_config.json config.json
echo "📝 Please edit config.json with your API keys"
exit 1
fi
# Start server
python -m mcp_server.server
echo "✅ Server stopped"