We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/aywengo/kafka-schema-reg-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
docker-compose.override.yml•764 B
# Docker Compose override to use pre-built DockerHub image
# This file allows users to quickly start the MCP server without building from source
#
# Usage:
# docker-compose up -d
#
# Note: The MCP server communicates via stdio, not HTTP. For Claude Desktop integration,
# use the image directly with docker run or configure Claude Desktop to use the container.
version: '3.8'
services:
mcp-server:
image: aywengo/kafka-schema-reg-mcp:latest
environment:
- SCHEMA_REGISTRY_URL=http://schema-registry-mcp:8081
depends_on:
schema-registry-mcp:
condition: service_healthy
# MCP servers use stdio communication, not HTTP ports
stdin_open: true
tty: true
# Override: use DockerHub image instead of building locally