Skip to main content
Glama

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
CINCH_API_KEYYesYour Cinch API key.
CINCH_BASE_URLNoOverride the API endpoint.https://api.cinch.codes
CINCH_TIMEOUT_MSNoClient-side timeout in ms. The API caps execution at 10s regardless.20000

Capabilities

Features and capabilities supported by this server

CapabilityDetails
tools
{
  "listChanged": true
}

Tools

Functions exposed to the LLM to take actions

NameDescription
execute_codeA

Execute Python or JavaScript in a secure, isolated, disposable sandbox and return its output. The sandbox is a gVisor-isolated container on Cinch's infrastructure with no access to the user's machine, filesystem, or network, so it is safe to run code you generated yourself, code from an untrusted source, or code whose behaviour you are unsure about. Use it whenever running code gives a more reliable answer than reasoning about it: checking a script works, exact calculations, parsing or transforming data, testing a regex, verifying language behaviour.

The environment is deliberately minimal. Read these limits before writing code:

  • Python 3.12 and Node 20, STANDARD LIBRARY ONLY. No third-party packages are installed and none can be installed. numpy, pandas, requests, scipy, axios, lodash and everything else on PyPI or npm are unavailable. Use json, csv, re, math, statistics, itertools, collections, datetime, hashlib, decimal, fractions and the rest of the stdlib instead.

  • NO network access. HTTP requests, DNS, package installs and API calls all fail.

  • NO filesystem persistence. The root filesystem is read-only; only /tmp is writable, and it is destroyed when the run ends.

  • 10 second execution limit, 256 MB memory, 0.5 CPU.

  • Every call gets a brand new sandbox. Nothing persists between calls — no variables, no files, no imports. Each snippet must be complete and self-contained.

  • Only stdout and stderr are returned. Print anything you want to see; a bare expression on the last line returns nothing.

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/yusufkadry/cinch-mcp'

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