Skip to main content
Glama

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
MCP_HOSTNoHTTP server host0.0.0.0
MCP_PORTNoHTTP server port3000

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
getTolkCompilerVersionA

Returns the current version of the Tolk compiler. Use this to check compiler compatibility.

runTolkCompilerA

Compiles Tolk source code and returns the compilation result.

On success, returns:

  • fiftCode: Generated Fift assembler code

  • codeBoc64: Base64-encoded BOC (Bag of Cells) containing the compiled contract

  • codeHashHex: Hexadecimal hash of the compiled code

  • stderr: Any compiler warnings

On error, returns:

  • status: "error"

  • message: Description of the compilation error

Use this tool to verify that Tolk code compiles correctly and to obtain the compiled bytecode.

Prompts

Interactive templates invoked by user choice

NameDescription

No prompts

Resources

Contextual data attached and managed by the client

NameDescription

No resources

TDQS

A4.4/5.0

Scored across 2 tools

Disambiguation5/5

The two tools have clearly distinct purposes: one retrieves the compiler version, the other compiles source code. There is no overlap or ambiguity between them.

Naming Consistency5/5

Both tool names follow the same camelCase verb-object pattern ('getTolkCompilerVersion' and 'runTolkCompiler'), making the naming predictable and consistent.

Tool Count4/5

With only two tools, the server is slightly below the typical 3-15 range, but the narrow scope (compiling Tolk code) justifies the minimal set. Each tool is essential and earns its place.

Completeness5/5

The server covers the full operation cycle for a compiler: checking version and compiling code. The compile result includes all necessary outputs (Fift code, BOC, hash, warnings) and error handling, so there are no obvious gaps.