We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/statespace-tech/toolfront'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
self_hosting.md•529 B
---
icon: lucide/server
---
# Self-Hosting
Run applications on your own infrastructure.
## Quick start
Self-hosting uses the Rust `statespace-server` library. Build a small binary that mounts your content directory and expose it behind a reverse proxy.
### Reverse proxy
Example nginx configuration:
```nginx
server {
listen 80;
server_name your-app.com;
location / {
proxy_pass http://127.0.0.1:8000;
proxy_set_header Host $host;
proxy_set_header X-Real-IP $remote_addr;
}
}
```