We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/surplus96/PM-MCP'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
start_server.sh•261 B
#!/bin/bash
# PM-MCP Server Startup Script
echo "🚀 Starting PM-MCP Server..."
cd "$(dirname "$0")"
# Activate virtual environment
source .venv/bin/activate
# Run server
python mcp_server/mcp_app.py
echo "✅ PM-MCP Server started on http://0.0.0.0:8010"