We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/sarptandoven/generalized-mcp-converter'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
.PHONY: proto lint
PYTHON ?= python3
PROTO_SRC=proto/mcp.proto
PROTO_OUT=src/generated
proto:
mkdir -p $(PROTO_OUT)
$(PYTHON) -m grpc_tools.protoc \
-I./proto \
--python_out=$(PROTO_OUT) \
--grpc_python_out=$(PROTO_OUT) \
$(PROTO_SRC)
touch $(PROTO_OUT)/__init__.py
lint:
ruff check src