We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/saidsurucu/mevzuat-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
import subprocess
import sys
from setuptools import setup
from setuptools.command.install import install
class PostInstallCommand(install):
"""Post-installation for installation mode."""
def run(self):
install.run(self)
# Install Playwright browsers
try:
print("Installing Playwright browsers...")
subprocess.check_call([sys.executable, "-m", "playwright", "install", "chromium"])
print("Playwright browsers installed successfully!")
except subprocess.CalledProcessError as e:
print(f"Warning: Failed to install Playwright browsers: {e}")
print("Playwright will still work but may require manual browser installation")
setup(
cmdclass={
'install': PostInstallCommand,
}
)