We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/elphinsnow/mcp-remote-py'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
@echo off
setlocal EnableExtensions
REM Uninstalls the global uv tool.
where uv >nul 2>&1
if errorlevel 1 (
echo uv not found. 1>&2
exit /b 1
)
echo Uninstalling mcp-remote-py (uv tool)... 1>&2
uv tool uninstall mcp-remote-py >nul 2>&1
echo Done. 1>&2
exit /b 0