Skip to main content
Glama

Claude MCP Server Ecosystem

by Coder-RL
nginx-clarusrev-full.conf1.17 kB
# ClarusRev Complete Nginx Configuration # React App server { listen 80; server_name localhost; location / { proxy_pass http://localhost:3100; proxy_http_version 1.1; proxy_set_header Upgrade $http_upgrade; proxy_set_header Connection 'upgrade'; proxy_set_header Host $host; proxy_cache_bypass $http_upgrade; } } # Admin UI server { listen 8889; server_name localhost; location / { alias /Users/robertlee/GitHubProjects/ClarusRev/ui/; try_files $uri $uri/ /index.html; autoindex on; } location /api/ { proxy_pass http://localhost:8000/api/; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; } } # API Backend server { listen 8080; server_name localhost; location /api/ { proxy_pass http://localhost:8000/; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; } location /node-api/ { proxy_pass http://localhost:3001/; proxy_set_header Host $host; proxy_set_header X-Real-IP $remote_addr; } }

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/Coder-RL/Claude_MCPServer_Dev1'

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