We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/doobidoo/mcp-memory-service'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
#!/bin/bash
echo "π Deploying Fixed FastMCP Server v4.0.0-alpha.1..."
# Stop current service
echo "βΉοΈ Stopping current service..."
sudo systemctl stop mcp-memory
# Install the fixed FastMCP service configuration
echo "π Installing fixed FastMCP service configuration..."
sudo cp /tmp/fastmcp-server-fixed.service /etc/systemd/system/mcp-memory.service
# Reload systemd daemon
echo "π Reloading systemd daemon..."
sudo systemctl daemon-reload
# Start the FastMCP server
echo "βΆοΈ Starting FastMCP server..."
sudo systemctl start mcp-memory
# Wait a moment for startup
sleep 3
# Check status
echo "π Checking service status..."
sudo systemctl status mcp-memory --no-pager
echo ""
echo "π Service logs (last 10 lines):"
sudo journalctl -u mcp-memory -n 10 --no-pager
echo ""
echo "β
FastMCP Server deployment complete!"
echo "π Native MCP Protocol should be available on port 8000"
echo "π Monitor logs: sudo journalctl -u mcp-memory -f"