cysic-mcp
Server Configuration
Describes the environment variables required to run the server.
| Name | Required | Description | Default |
|---|---|---|---|
| CYSIC_MODEL | No | Default model used by the tools when no per-call override is given. | minimax-m3 |
| CYSIC_API_KEY | Yes | Bearer token for the Cysic AI endpoint. Required. | |
| CYSIC_BASE_URL | No | Base URL for the Cysic AI OpenAI-compatible API. | https://token-ai.cysic.xyz/v1 |
| CYSIC_TIMEOUT_MS | No | Per-request HTTP timeout in milliseconds. | 30000 |
| CYSIC_MAX_RETRIES | No | Retries 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
| Capability | Details |
|---|---|
| tools | {
"listChanged": true
} |
| prompts | {
"listChanged": true
} |
| resources | {
"listChanged": true
} |
Tools
Functions exposed to the LLM to take actions
| Name | Description |
|---|---|
| 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
| Name | Description |
|---|---|
| code_review | Render a senior-level code-review prompt for the given code snippet. |
| humanize_text | Render 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
| Name | Description |
|---|---|
| cysic-models | Catalog of models served by this MCP server. |
TDQS
Scored across 3 tools
Each tool has a distinctly clear purpose: single-turn chat, text rewriting, and multi-turn chat. No overlap or ambiguity.
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.
Three tools is reasonable for a focused AI interaction server, though slightly minimal. It covers essential functions without unnecessary bloat.
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.