Skip to main content
Glama

microsandbox

by microsandbox
microsandbox.erl394 B
-module(microsandbox). -export([greet/1]). %% @doc Returns a greeting message for the given name. %% %% Example: %% ``` %% {ok, Greeting} = microsandbox:greet("World"), %% io:format("~s~n", [Greeting]). %% ''' -spec greet(string()) -> {ok, string()}. greet(Name) -> Message = "Hello, " ++ Name ++ "! Welcome to Microsandbox!", io:format("~s~n", [Message]), {ok, Message}.

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/microsandbox/microsandbox'

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