We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/crypto-ninja/mcp-server-for-Github'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
setup.py•306 B
"""Minimal setup.py for backward compatibility with older pip versions."""
from setuptools import setup, find_packages
# All metadata is defined in pyproject.toml.
# This file exists only for compatibility with older tools.
setup(
packages=find_packages(where="src"),
package_dir={"": "src"},
)