We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/itstanner5216/multi-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
.PHONY: docker-build run docker-run test-proxy test-e2e test-k8s test-k all-test
# Docker
docker-build:
docker build -t multi-mcp .
docker-run:
docker run -p 8080:8080 multi-mcp
# Run
run:
uv run main.py
# Tests
test-proxy:
pytest -s tests/proxy_test.py
test-e2e:
pytest -s tests/e2e_test.py
test-k8s: docker-build
pytest -s tests/k8s_test.py
test-lifecycle:
pytest -s tests/lifecycle_test.py
# All tests together
all-test: test-proxy test-e2e test-k test-k8s