Skip to main content
Glama

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault

No arguments

Instructions

Guidance the server publishes about itself, which clients place ahead of the tool catalog so the model reads it before choosing anything.

This server publishes no instructions, or was last inspected before Glama recorded them.

Capabilities

Features and capabilities supported by this server

Protocol revision2025-11-25

CapabilityDetails
tools
{
  "listChanged": true
}

Tools

Functions exposed to the LLM to take actions

NameDescription
list_toolsA

List all available tools from tool-website, optionally filtered by category

get_tool_schemaA

Get detailed schema and description for a specific tool

execute_toolC

Execute a tool by type with inputs and optional config overrides

run_workflowC

Run a connected workflow of tools (nodes + edges) in topological order

tool_stringD

[basic] String

Parameters:

  • value (string): Value

tool_numberD

[basic] Number

Parameters:

  • value (number): Value

tool_jsonD

[basic] JSON

Parameters:

  • value (string): Value

Outputs:

  • parsed (json): Parsed

tool_fileD

[basic] File

Parameters:

  • file (bytes): File

tool_booleanD

[basic] Boolean

Parameters:

  • value (boolean): Value

tool_hashD

[crypto] Hash

Parameters:

  • data (string): Data

  • category (string): Category

  • algorithm (string): Algorithm

  • outputFormat (string): Output

Outputs:

  • hash (string): Hash

tool_hash_verifyC

[crypto] Hash Verify

Parameters:

  • data (string): Data

  • hash (string): Hash

  • category (string): Category

  • algorithm (string): Algorithm

Outputs:

  • valid (boolean): Valid

tool_hmacC

[crypto] HMAC

Parameters:

  • data (string): Data

  • key (string): Key

  • algorithm (string): Algorithm

  • outputFormat (string): Output

Outputs:

  • hmac (string): HMAC

tool_hmac_verifyC

[crypto] HMAC Verify

Parameters:

  • expectedHmac (string): Expected HMAC

  • data (string): Data

  • key (string): Key

  • algorithm (string): Algorithm

Outputs:

  • valid (boolean): Valid

tool_cryptoD

[crypto] Crypto

Parameters:

  • data (string): Data

  • key (string): Key

  • iv (string): IV

  • algorithm (string): Algorithm

  • mode (string): Mode

  • operation (string): Operation

Outputs:

  • result (string): Result

tool_encodingD

[crypto] Encoding

Parameters:

  • input (string): Input

  • encoding (string): Encoding

  • mode (string): Mode

Outputs:

  • output (string): Output

tool_classic_cipherC

[crypto] Classic Cipher

Parameters:

  • data (string): Data

  • algorithm (string): Algorithm

  • shift (number): Shift

Outputs:

  • result (string): Result

tool_jwtD

[crypto] JWT

Parameters:

  • token (string): Token

Outputs:

  • header (json): Header

  • payload (json): Payload

  • signature (string): Signature

tool_json_formatC

[data] JSON Format

Parameters:

  • data (string): Data

  • indent (number): Indent

  • sortKeys (boolean): Sort Keys

Outputs:

  • formatted (string): Formatted

  • minified (string): Minified

tool_json_pathD

[data] JSON Path

Parameters:

  • json (json): JSON

  • path (string): Path

Outputs:

  • string (string): String

  • number (number): Number

  • boolean (boolean): Boolean

  • object (json): Object

  • array (json): Array

  • type (string): Type

tool_json_stringifyD

[data] JSON Stringify

Parameters:

  • json (json): JSON

Outputs:

  • string (string): String

tool_json_parseC

[data] JSON Parse

Parameters:

  • string (string): String

Outputs:

  • json (json): JSON

tool_json_to_yamlA

[data] JSON to YAML

Parameters:

  • json (json): JSON

Outputs:

  • yaml (string): YAML

tool_yaml_to_jsonA

[data] YAML to JSON

Parameters:

  • yaml (string): YAML

Outputs:

  • json (json): JSON

tool_protobufD

[data] Protobuf

Parameters:

  • data (string): Data

  • mode (string): Mode

  • indentSize (number): Indent

Outputs:

  • decoded (json): Decoded

tool_jceD

[data] JCE

Parameters:

  • data (string): Data

  • mode (string): Mode

Outputs:

  • decoded (json): Decoded

tool_base64_to_fileC

[data] Base64 To File

Parameters:

  • base64 (string): Base64

  • filename (string): Filename

  • mimeType (string): MIME Type

Outputs:

  • file (bytes): File

tool_file_to_base64C

[data] File To Base64

Parameters:

  • file (bytes): File

Outputs:

  • base64 (string): Base64

tool_file_to_stringC

[data] File To String

Parameters:

  • file (bytes): File

Outputs:

  • content (string): Content

tool_string_to_fileC

[data] String To File

Parameters:

  • content (string): Content

  • filename (string): Filename

Outputs:

  • file (bytes): File

tool_image_to_base64C

[image] Image to Base64

Parameters:

  • file (bytes): File

  • outputFormat (string): Output

Outputs:

  • base64 (string): Base64

  • dataUri (string): Data URI

tool_exif_viewerC

[image] EXIF Viewer

Parameters:

  • file (bytes): File

  • category (string): Category

Outputs:

  • exif (json): EXIF Data

tool_image_compressD

[image] Image Compress

Parameters:

  • file (bytes): File

  • quality (number): Quality

  • outputFormat (string): Format

Outputs:

  • file (bytes): File

  • info (json): Info

tool_image_editorC

[image] Image Editor

Parameters:

  • file (bytes): File

  • brightness (number): Brightness

  • contrast (number): Contrast

  • saturation (number): Saturation

  • grayscale (boolean): Grayscale

Outputs:

  • file (bytes): File

  • info (json): Info

tool_qrcodeC

[image] QRCode

Parameters:

  • data (string): Data

  • size (number): Size

  • errorCorrection (string): Error Correction

  • fgColor (string): Foreground

  • bgColor (string): Background

Outputs:

  • image (bytes): Image

  • dataUri (string): Data URI

tool_qrcode_decodeC

[image] QRCode Decode

Parameters:

  • file (bytes): File

Outputs:

  • data (string): Data

tool_meme_splitterC

[image] Meme Splitter

Parameters:

  • file (bytes): File

  • rows (number): Rows

  • cols (number): Cols

Outputs:

  • parts (json): Parts

tool_image_coordinatesD

[image] Image Coordinates

Parameters:

  • file (bytes): File

  • x (number): X

  • y (number): Y

Outputs:

  • coordinates (json): Coordinates

  • pixel (json): Pixel

tool_text_statsB

[text] Text Stats

Parameters:

  • text (string): Text

Outputs:

  • characters (number): Characters

  • words (number): Words

  • lines (number): Lines

  • sentences (number): Sentences

  • paragraphs (number): Paragraphs

  • bytes (number): Bytes

tool_case_converterB

[text] Case Converter

Parameters:

  • text (string): Text

Outputs:

  • upper (string): UPPER

  • lower (string): lower

  • title (string): Title

  • camel (string): camelCase

  • snake (string): snake_case

  • kebab (string): kebab-case

tool_regexD

[text] Regex

Parameters:

  • text (string): Text

  • pattern (string): Pattern

  • flags (string): Flags

  • replacement (string): Replacement

Outputs:

  • matches (json): Matches

  • test (string): Test

tool_diffC

[text] Diff

Parameters:

  • text1 (string): Text 1

  • text2 (string): Text 2

Outputs:

  • added (number): Added

  • removed (number): Removed

  • unchanged (number): Unchanged

  • diff (json): Diff

  • changes (json): Changes

tool_http_testerC

[dev] HTTP Tester

Parameters:

  • url (string): URL

  • method (string): Method

  • headers (string): Headers

  • body (string): Body

Outputs:

  • response (json): Response

  • status (number): Status

tool_crontabC

[dev] Crontab

Parameters:

  • expression (string): Expression

Outputs:

  • parsed (json): Parsed

  • nextRuns (json): Next Runs

tool_docker_converterD

[dev] Docker Converter

Parameters:

  • command (string): Command

  • format (string): Format

Outputs:

  • dockerfile (string): Dockerfile

  • compose (string): Compose

tool_whoisD

[dev] Whois

Parameters:

  • domain (string): Domain

Outputs:

  • result (json): Result

tool_uuidB

[utility] UUID

Parameters:

  • version (string): Version

  • uppercase (boolean): Uppercase

  • withHyphens (boolean): Hyphens

Outputs:

  • uuid (string): UUID

tool_totpD

[utility] TOTP

Parameters:

  • secret (string): Secret

  • digits (number): Digits

  • period (number): Period

Outputs:

  • code (string): Code

  • remaining (number): Remaining

  • counter (number): Counter

tool_colorD

[utility] Color

Parameters:

  • color (string): Color

Outputs:

  • hex (string): HEX

  • rgb (json): RGB

  • hsl (json): HSL

tool_base_converterC

[utility] Base Converter

Parameters:

  • value (string): Value

  • fromBase (string): Input Base

Outputs:

  • binary (string): Binary

  • octal (string): Octal

  • decimal (string): Decimal

  • hex (string): Hex

tool_temperature_converterC

[utility] Temperature

Parameters:

  • value (number): Value

  • fromUnit (string): From

  • precision (string): Precision

Outputs:

  • celsius (number): Celsius

  • fahrenheit (number): Fahrenheit

  • kelvin (number): Kelvin

tool_currencyC

[utility] Currency

Parameters:

  • amount (number): Amount

  • from (string): From

  • to (string): To

Outputs:

  • converted (number): Converted

  • rate (number): Rate

tool_bmiA

[utility] BMI

Parameters:

  • weight (number): Weight (kg)

  • height (number): Height (m)

Outputs:

  • bmi (number): BMI

  • category (string): Category

tool_device_infoD

[viewer] Device Info

Outputs:

  • info (json): Info

tool_office_viewerD

[viewer] Office Viewer

Parameters:

  • file (bytes): File

Outputs:

  • info (json): Info

tool_timeD

[viewer] Time

Parameters:

  • timezone (string): Timezone

Outputs:

  • timestamp (number): Timestamp

  • iso (string): ISO

  • formatted (string): Formatted

  • parts (json): Parts

tool_string_previewC

[viewer] String Preview

Parameters:

  • content (string): Content

tool_json_previewD

[viewer] JSON Preview

Parameters:

  • json (json): JSON

tool_image_previewD

[viewer] Image Preview

Parameters:

  • file (bytes): File

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

Latest Blog Posts

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/maple-awa/tool-mcp'

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