We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/Jakedismo/master-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
oauth-delegation.md•490 B
---
title: OAuth Delegation
---
# OAuth Delegation Guide
Enable per-server OAuth by delegating authorization flows.
- Configure `oauth_delegation.enabled: true` and optional `providers` map.
- Implement callback base URL and provider-specific overrides.
- Use `FlowController` with Express or Workers runtime to complete flows.
Security
- Use state and PKCE to prevent CSRF and code interception.
- Restrict allowed redirect URIs.
See: `src/oauth/*` and `examples/oauth-delegation/`.