Skip to main content
Glama

Server Configuration

Describes the environment variables required to run the server.

NameRequiredDescriptionDefault
CYSIC_MODELNoDefault model used by the tools when no per-call override is given.minimax-m3
CYSIC_API_KEYYesBearer token for the Cysic AI endpoint. Required.
CYSIC_BASE_URLNoBase URL for the Cysic AI OpenAI-compatible API.https://token-ai.cysic.xyz/v1
CYSIC_TIMEOUT_MSNoPer-request HTTP timeout in milliseconds.30000
CYSIC_MAX_RETRIESNoRetries on 429 / 5xx / network errors (exponential backoff + jitter).3

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
}
prompts
{
  "listChanged": true
}
resources
{
  "listChanged": true
}

Tools

Functions exposed to the LLM to take actions

NameDescription
cysic_chatB

Single-turn chat with the Cysic AI model. Returns the model reply as a text content block.

cysic_sessionA

Multi-turn chat with the Cysic AI model and a server-side session memory. Each call sends the full prior history to the model and appends both turns to the session.

cysic_humanizeA

Rewrite a piece of text in a requested tone. Returns the rewritten text as a text content block.

Prompts

Interactive templates invoked by user choice

NameDescription
code_reviewRender a senior-level code-review prompt for the given code snippet.
humanize_textRender a prompt that mirrors the cysic_humanize tool contract so an MCP client can present it as a chat template.

Resources

Contextual data attached and managed by the client

NameDescription
cysic-modelsCatalog of models served by this MCP server.

TDQS

A3.6/5.0

Scored across 3 tools

Disambiguation5/5

Each tool has a distinctly clear purpose: single-turn chat, text rewriting, and multi-turn chat. No overlap or ambiguity.

Naming Consistency3/5

All tools use the 'cysic_' prefix, but the second part mixes verb forms ('chat', 'humanize') with a noun ('session'), creating a slight inconsistency in naming pattern.

Tool Count4/5

Three tools is reasonable for a focused AI interaction server, though slightly minimal. It covers essential functions without unnecessary bloat.

Completeness4/5

The tool set covers the core use cases (single/multi-turn chat and text rewriting). Missing features like session management or system prompt configuration are minor gaps.

Maintenance

ActivityInactive
ResponsivenessNo issues