We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/pedarias/gemini-cli-rag-mcp'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
docker-compose.yml•608 B
version: '3.8'
services:
gemini-cli-mcp:
build: .
container_name: gemini-cli-mcp-container
environment:
- ANTHROPIC_API_KEY=${ANTHROPIC_API_KEY}
volumes:
# Mount the vector store data to persist across container restarts
- ./gemini_cli_vectorstore.parquet:/app/gemini_cli_vectorstore.parquet:ro
- ./gemini_cli_docs.txt:/app/gemini_cli_docs.txt:ro
stdin_open: true
tty: true
# For MCP stdio communication, we need to keep the container running
# and handle I/O through docker exec
command: ["tail", "-f", "/dev/null"]
restart: unless-stopped