tolk-mcp-server
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| MCP_HOST | No | HTTP server host | 0.0.0.0 |
| MCP_PORT | No | HTTP server port | 3000 |
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
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| 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:
On error, returns:
Use this tool to verify that Tolk code compiles correctly and to obtain the compiled bytecode. |
Prompts
Interactive templates invoked by user choice
| Name | Description |
|---|---|
No prompts | |
Resources
Contextual data attached and managed by the client
| Name | Description |
|---|---|
No resources | |
TDQS
Scored across 2 tools
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.
Both tool names follow the same camelCase verb-object pattern ('getTolkCompilerVersion' and 'runTolkCompiler'), making the naming predictable and consistent.
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.
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.