Skip to main content
Glama

Smart-AI-Bridge

nginx.conf.template1.22 kB
# ┗(▀̿Ĺ̯▀̿ ̿)┓ CI-CD Generated Nginx Configuration # Auto-generated from template with WSL IP: {{WSL_HOST_IP}} # Generated at: {{TIMESTAMP}} upstream deepseek_backend { server {{WSL_HOST_IP}}:{{DEFAULT_PORT}}; } upstream qwen_backend { server {{WSL_HOST_IP}}:{{CONTAINER_PORT_8001}}; } server { listen 80; server_name localhost; # DeepSeek MCP Bridge location /mcp/ { proxy_pass http://deepseek_backend/; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; } # Qwen Model API location /v1/ { proxy_pass http://qwen_backend/v1/; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; proxy_set_header X-Forwarded-For $proxy_add_x_forwarded_for; proxy_set_header X-Forwarded-Proto $scheme; proxy_read_timeout 300s; proxy_connect_timeout 60s; } # Health checks location /health { proxy_pass http://deepseek_backend/health; } location /qwen/health { proxy_pass http://qwen_backend/health; } }

MCP directory API

We provide all the information about MCP servers via our MCP API.

curl -X GET 'https://glama.ai/api/mcp/v1/servers/Platano78/Smart-AI-Bridge'

If you have feedback or need assistance with the MCP directory API, please join our Discord server