We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/crdant/mbta-mcp-server'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
distance_calc.go•216 B
package mbta
import (
"math"
)
// isCloseEnough checks if two float values are close enough to be considered equal
func isCloseEnough(a, b float64) bool {
const epsilon = 0.0001
return math.Abs(a-b) < epsilon
}