We provide all the information about MCP servers via our MCP API.
curl -X GET 'https://glama.ai/api/mcp/v1/servers/oraios/serena'
If you have feedback or need assistance with the MCP directory API, please join our Discord server
Utils.elm•508 B
module Utils exposing (formatMessage, addNumbers, multiplyNumbers)
{-| Utility functions for the Elm test application.
This module provides helper functions used by other modules.
-}
{-| Format a message by adding brackets around it
-}
formatMessage : String -> String
formatMessage msg =
"[ " ++ msg ++ " ]"
{-| Add two numbers together
-}
addNumbers : Int -> Int -> Int
addNumbers x y =
x + y
{-| Multiply two numbers
-}
multiplyNumbers : Int -> Int -> Int
multiplyNumbers x y =
x * y