Skip to main content
Glama

Slack MCP

MIT License
696
  • Apple
  • Linux
limits.go479 B
package limiter import ( "time" "golang.org/x/time/rate" ) type tier struct { // once every t time.Duration // burst b int } func (t tier) Limiter() *rate.Limiter { return rate.NewLimiter(rate.Every(t.t), t.b) } var ( // tier1 = tier{t: 1 * time.Minute, b: 2} Tier2 = tier{t: 3 * time.Second, b: 3} Tier2boost = tier{t: 300 * time.Millisecond, b: 5} Tier3 = tier{t: 1200 * time.Millisecond, b: 4} // tier4 = tier{t: 60 * time.Millisecond, b: 5} )

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/korotovsky/slack-mcp-server'

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