We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/mbentham/sql-augur'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
IRateLimitingService.cs•382 B
namespace SqlAugur.Services;
public interface IRateLimitingService
{
/// <summary>
/// Acquires a rate limit lease. The returned IDisposable releases the concurrency slot when disposed.
/// Throws InvalidOperationException if the rate limit or concurrency limit is exceeded.
/// </summary>
Task<IDisposable> AcquireAsync(CancellationToken cancellationToken);
}