Skip to main content
Glama
AceDataCloud

AiChat MCP Server

Official
by AceDataCloud

MCP AiChat Server

A Model Context Protocol (MCP) server for AI dialogue via the AceDataCloud platform. Supports a wide range of models including GPT-4/5, o-series, DeepSeek, Grok, and GLM.

Features

  • Multi-model support: GPT-4.1, GPT-4o, GPT-5, o1, o3, o4-mini, DeepSeek, Grok, GLM, and more

  • Multi-turn conversations: Continue conversations using conversation IDs

  • Stateful mode: Optional server-side conversation state management

  • Reference sources: Include external references for context-aware responses

Related MCP server: AI-Persona

Installation

pip install mcp-aichat

Configuration

Set your AceDataCloud API token:

export ACEDATACLOUD_API_TOKEN=your_token_here

Get your token from https://platform.acedata.cloud.

Usage

stdio mode (default)

mcp-aichat

HTTP mode

mcp-aichat --transport http --port 8000

Available Tools

Tool

Description

aichat_create_conversation

Create an AI conversation with any supported model

aichat_create_conversation_v2

Create/manage conversations via /aichat2/conversations

aichat_list_models

List all available AI models

aichat_get_usage_guide

Get API usage guide

Supported Models

OpenAI

  • GPT-5 series: gpt-5.5, gpt-5.4, gpt-5.2, gpt-5.1, gpt-5, gpt-5-mini, gpt-5-nano

  • GPT-4.1 series: gpt-4.1, gpt-4.1-mini, gpt-4.1-nano

  • GPT-4o series: gpt-4o, gpt-4o-mini, gpt-4o-all, gpt-4o-image

  • GPT-4 series: gpt-4, gpt-4-turbo, gpt-4-vision-preview

  • o-series: o1, o1-mini, o1-pro, o3, o3-mini, o3-pro, o4-mini

DeepSeek

  • deepseek-r1, deepseek-r1-0528, deepseek-v3, deepseek-v3-250324, deepseek-v4-flash, deepseek-v4-pro

xAI

  • grok-3

Zhipu AI

  • glm-5.1, glm-4.7, glm-4.6, glm-3-turbo

Documentation

Documentation

License

MIT

Available Tools

4 tools
aichat_create_conversationAInspect

Create an AI conversation using the AiChat API.

Sends a question to the specified AI model and returns the generated answer.
Supports a wide range of models including GPT-4, GPT-5, o-series, DeepSeek, Grok, and GLM.

Use this when:
- You need to ask a question to an AI model
- You want to continue an existing conversation (provide conversation_id)
- You need answers from specific AI models like DeepSeek, Grok, or GLM

Returns:
    JSON response containing the conversation ID and the generated answer.
ParametersJSON Schema
NameRequiredDescriptionDefault
modelNoThe model to use for generating the answer. Options include gpt-4.1, gpt-4o, gpt-5, o1, o3, o4-mini, deepseek-r1, deepseek-v3, grok-3, glm-4.7, and many more. Default is gpt-4.1.gpt-4.1
presetNoAn optional preset model configuration to apply for this conversation.
questionYesThe prompt or question to be answered by the AI model. Required.
statefulNoWhether to use stateful conversation mode. When True, the server tracks conversation history. Default is False (stateless).
referencesNoOptional list of reference sources or context to include when generating the answer.
conversation_idNoThe unique identifier of an existing conversation to continue. If provided, the AI will respond in the context of the prior conversation. Leave empty to start a new conversation.

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A3.9/5.0
Behavior4/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

With no annotations provided, the description carries the behavioral disclosure burden. It clearly states the core behavior: it creates/continues a conversation, sends a question to an AI model, and returns a JSON response with conversation ID and answer. It does not mention persistence or stateful nuances, but the schema already explains stateful behavior, so this is a minor gap.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is well-organized with a clear opening action, a 'Use this when' section, and a Returns section. It is reasonably compact and front-loaded, though the model-support list is partially redundant with the schema enum.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness4/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given a 6-parameter schema with 100% coverage and an output schema, the description provides enough context to invoke the tool correctly: it explains the main action, continuation via conversation_id, and the response shape. The only notable completeness gap is the lack of distinction vs aichat_create_conversation_v2.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

Schema description coverage is 100%, so structured documentation already fully explains every parameter. The description adds modest value by tying question and conversation_id to concrete use cases and highlighting model breadth, but it does not meaningfully expand on parameter meaning.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly identifies the operation: 'Create an AI conversation using the AiChat API' and 'Sends a question to the specified AI model and returns the generated answer.' It is distinct from aichat_list_models and aichat_get_usage_guide, but it does not differentiate from the sibling aichat_create_conversation_v2.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The 'Use this when' bullets provide explicit use cases: asking a question, continuing an existing conversation with conversation_id, and requesting specific model families like DeepSeek or Grok. However, it gives no exclusions and does not mention when the sibling v2 tool should be used instead.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

aichat_create_conversation_v2CInspect

Create/manage conversations via AiChat v2 endpoint.

ParametersJSON Schema
NameRequiredDescriptionDefault
idNoConversation ID. Required for retrieve/update/delete actions.
asyncNoWhether to process the request asynchronously.
limitNoPagination limit for retrieve_batch.
modelNoModel to use for the request.gpt-4.1
titleNoConversation title.
actionNoOperation to perform: chat (default), retrieve, retrieve_batch, update, or delete.chat
offsetNoPagination offset for retrieve_batch.
presetNoOptional preset model configuration.
messageNoMessage payload as a string or structured content array.
user_idNoFilter or associate by user ID.
messagesNoConversation messages for update/action workflows.
questionNoQuestion text for chat action.
statefulNoWhether to use stateful conversation mode.
max_turnsNoMaximum number of turns for conversation history.
referencesNoOptional list of reference sources.
model_groupNoProvider group filter for retrieve_batch.
callback_urlNoWebhook URL to receive async completion callbacks.
tool_resultsNoTool call results for follow-up turns.
allowed_skillsNoOptional list of skills the agent may use.
application_idNoFilter or associate by application ID.
unattended_policyNoOptional unattended-execution policy configuration.
allowed_mcp_serversNoOptional list of MCP servers the agent may use.

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

C2.9/5.0
Behavior2/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are present, so the description carries the full burden of behavioral disclosure. It only states that conversations can be created or managed; it does not mention side effects, persistence behavior, authorization requirements, async semantics, or what happens to existing conversations. It adds very little beyond the tool's name.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness4/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is a single short sentence with no wasted words and is easy to scan. However, for a tool with 22 optional parameters and five possible actions, the extreme brevity is more under-specification than elegant conciseness.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness2/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

This is a complex multi-action tool, yet the description gives no indication of how the action parameter routes behavior or which parameter combinations matter. The output schema and parameter descriptions help, but an agent still lacks essential usage context for selecting among chat, retrieve, retrieve_batch, update, and delete.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters3/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The description itself adds no parameter-level meaning, but the input schema documents all 22 parameters with descriptions and defaults, giving 100% schema coverage. Therefore the schema carries the parameter-semantics burden, and the baseline of 3 is appropriate.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose4/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description names the resource ('conversations') and a clear set of actions ('create/manage'), and it ties the tool to the 'v2 endpoint'. It does not, however, differentiate this from the sibling aichat_create_conversation beyond the version label, so it stops short of full clarity.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines2/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

There is no guidance on when to use this tool instead of aichat_create_conversation, aichat_list_models, or aichat_get_usage_guide. The phrase 'v2 endpoint' hints at a version preference but provides no concrete selection criteria or exclusions.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

aichat_get_usage_guideAInspect

Get a comprehensive guide for using the AiChat tools.

Provides detailed information on how to use the AiChat tools effectively,
including parameters, examples, and best practices.

Returns:
    Complete usage guide for AiChat tools.
ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.3/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations are provided, so the description carries the full burden. It states the tool returns a 'Complete usage guide' but does not explicitly declare idempotence or lack of side effects. For a simple read-only tool, this is adequate but could be more explicit.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

The description is concise (3 short sentences), front-loads the purpose, and every sentence adds value. There is no waste, though the first two sentences are slightly redundant; still, the overall structure is excellent.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given the tool has no parameters and an output schema exists (per context), the description is complete. It clearly explains the return value ('Complete usage guide for AiChat tools'), which is sufficient for an agent to understand the tool's function.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

The tool has zero parameters, so parameter semantics are not applicable. The description adds value by explaining what the tool returns (usage guide), which justifies the baseline score of 4 for tools with no parameters.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states the tool's purpose: 'Get a comprehensive guide for using the AiChat tools.' It distinguishes itself from sibling tools like aichat_create_conversation and aichat_list_models by focusing on documentation rather than actions.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines4/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

The description implies usage for obtaining guidance ('Provides detailed information on how to use the AiChat tools effectively'), but does not explicitly state when to use this versus alternatives or provide exclusions. Nonetheless, the context is clear.

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

aichat_list_modelsAInspect

List all available AI models for the AiChat API.

Returns a comprehensive list of supported models grouped by provider,
including GPT-4/5, o-series, DeepSeek, Grok, and GLM models.

Returns:
    Formatted list of available models with descriptions.
ParametersJSON Schema
NameRequiredDescriptionDefault

No parameters

Output Schema

ParametersJSON Schema
NameRequiredDescription
resultYes

TDQS

A4.1/5.0
Behavior3/5

Does the description disclose side effects, auth requirements, rate limits, or destructive behavior?

No annotations provided. Description indicates it returns a formatted list with descriptions, but doesn't discuss potential behaviors like rate limits or pagination. Adequate for a simple read-only operation.

Agents need to know what a tool does to the world before calling it. Descriptions should go beyond structured annotations to explain consequences.

Conciseness5/5

Is the description appropriately sized, front-loaded, and free of redundancy?

Concise, front-loaded with the action ('List all available AI models'), and each sentence adds value. No wasted words.

Shorter descriptions cost fewer tokens and are easier for agents to parse. Every sentence should earn its place.

Completeness5/5

Given the tool's complexity, does the description cover enough for an agent to succeed on first attempt?

Given zero parameters and a simple purpose, the description covers all needed information. Output schema exists, so return values are handled. Context signals indicate high schema coverage and no nested objects.

Complex tools with many parameters or behaviors need more documentation. Simple tools need less. This dimension scales expectations accordingly.

Parameters4/5

Does the description clarify parameter syntax, constraints, interactions, or defaults beyond what the schema provides?

No parameters exist, so baseline is 4. Description does not need to add parameter semantics.

Input schemas describe structure but not intent. Descriptions should explain non-obvious parameter relationships and valid value ranges.

Purpose5/5

Does the description clearly state what the tool does and how it differs from similar tools?

The description clearly states 'List all available AI models for the AiChat API' and provides specific examples (GPT-4/5, o-series, etc.). It distinguishes from sibling tools (create_conversation, usage_guide) by focusing on listing models.

Agents choose between tools based on descriptions. A clear purpose with a specific verb and resource helps agents select the right tool.

Usage Guidelines3/5

Does the description explain when to use this tool, when not to, or what alternatives exist?

No explicit guidance on when to use this tool versus alternatives. However, with zero parameters and a straightforward purpose, usage is implied (e.g., before creating a conversation).

Agents often have multiple tools that could apply. Explicit usage guidance like "use X instead of Y when Z" prevents misuse.

Tool Schema Changelog

Recent tool additions, removals, and schema changes observed during successful MCP inspections. Dates show when Glama detected each change.

  1. 2 tool updatesv0.1.7
    • Changedaichat_create_conversation1 field changed
      • changedInput schema / properties / model / enum
        Previous value: -[
        -  "gpt-5.6-luna",
        -  "gpt-5.6-terra",
        -  "gpt-5.6-sol",
        -  "gpt-5.5",
        -  "gpt-5.5-pro",
        -  "gpt-5.4",
        -  "gpt-5.4-pro",
        -  "gpt-5.4-mini",
        -  "gpt-5.4-nano",
        -  "gpt-5.2",
        -  "gpt-5.1",
        -  "gpt-5.1-all",
        -  "gpt-5",
        -  "gpt-5-mini",
        -  "gpt-5-nano",
        -  "gpt-5-all",
        -  "gpt-4",
        -  "gpt-4-all",
        -  "gpt-4-turbo",
        -  "gpt-4-turbo-preview",
        -  "gpt-4-vision-preview",
        -  "gpt-4.1",
        -  "gpt-4.1-2025-04-14",
        -  "gpt-4.1-mini",
        -  "gpt-4.1-mini-2025-04-14",
        -  "gpt-4.1-nano",
        -  "gpt-4.1-nano-2025-04-14",
        -  "gpt-4.5-preview",
        -  "gpt-4.5-preview-2025-02-27",
        -  "gpt-4o",
        -  "gpt-4o-2024-05-13",
        -  "gpt-4o-2024-08-06",
        -  "gpt-4o-2024-11-20",
        -  "gpt-4o-all",
        -  "gpt-4o-image",
        -  "gpt-4o-mini",
        -  "gpt-4o-mini-2024-07-18",
        -  "gpt-4o-mini-search-preview",
        -  "gpt-4o-mini-search-preview-2025-03-11",
        -  "gpt-4o-search-preview",
        -  "gpt-4o-search-preview-2025-03-11",
        -  "o1",
        -  "o1-2024-12-17",
        -  "o1-all",
        -  "o1-mini",
        -  "o1-mini-2024-09-12",
        -  "o1-mini-all",
        -  "o1-preview",
        -  "o1-preview-2024-09-12",
        -  "o1-preview-all",
        -  "o1-pro",
        -  "o1-pro-2025-03-19",
        -  "o1-pro-all",
        -  "o3",
        -  "o3-2025-04-16",
        -  "o3-all",
        -  "o3-mini",
        -  "o3-mini-2025-01-31",
        -  "o3-mini-2025-01-31-high",
        -  "o3-mini-2025-01-31-low",
        -  "o3-mini-2025-01-31-medium",
        -  "o3-mini-all",
        -  "o3-mini-high",
        -  "o3-mini-high-all",
        -  "o3-mini-low",
        -  "o3-mini-medium",
        -  "o3-pro",
        -  "o3-pro-2025-06-10",
        -  "o4-mini",
        -  "o4-mini-2025-04-16",
        -  "o4-mini-all",
        -  "o4-mini-high-all",
        -  "deepseek-r1",
        -  "deepseek-r1-0528",
        -  "deepseek-v3",
        -  "deepseek-v3-250324",
        -  "deepseek-v4-flash",
        -  "deepseek-v4-pro",
        -  "grok-3",
        -  "grok-4.5",
        -  "glm-5.3",
        -  "glm-5.2",
        -  "glm-5",
        -  "glm-5-turbo",
        -  "glm-5.1",
        -  "glm-4.7",
        -  "glm-4.6",
        -  "glm-3-turbo"
        -]New value: +[
        +  "gpt-6-astra",
        +  "gpt-5.6-luna",
        +  "gpt-5.6-terra",
        +  "gpt-5.6-sol",
        +  "gpt-5.5",
        +  "gpt-5.5-pro",
        +  "gpt-5.4",
        +  "gpt-5.4-pro",
        +  "gpt-5.4-mini",
        +  "gpt-5.4-nano",
        +  "gpt-5.2",
        +  "gpt-5.1",
        +  "gpt-5.1-all",
        +  "gpt-5",
        +  "gpt-5-mini",
        +  "gpt-5-nano",
        +  "gpt-5-all",
        +  "gpt-4",
        +  "gpt-4-all",
        +  "gpt-4-turbo",
        +  "gpt-4-turbo-preview",
        +  "gpt-4-vision-preview",
        +  "gpt-4.1",
        +  "gpt-4.1-2025-04-14",
        +  "gpt-4.1-mini",
        +  "gpt-4.1-mini-2025-04-14",
        +  "gpt-4.1-nano",
        +  "gpt-4.1-nano-2025-04-14",
        +  "gpt-4.5-preview",
        +  "gpt-4.5-preview-2025-02-27",
        +  "gpt-4o",
        +  "gpt-4o-2024-05-13",
        +  "gpt-4o-2024-08-06",
        +  "gpt-4o-2024-11-20",
        +  "gpt-4o-all",
        +  "gpt-4o-image",
        +  "gpt-4o-mini",
        +  "gpt-4o-mini-2024-07-18",
        +  "gpt-4o-mini-search-preview",
        +  "gpt-4o-mini-search-preview-2025-03-11",
        +  "gpt-4o-search-preview",
        +  "gpt-4o-search-preview-2025-03-11",
        +  "o1",
        +  "o1-2024-12-17",
        +  "o1-all",
        +  "o1-mini",
        +  "o1-mini-2024-09-12",
        +  "o1-mini-all",
        +  "o1-preview",
        +  "o1-preview-2024-09-12",
        +  "o1-preview-all",
        +  "o1-pro",
        +  "o1-pro-2025-03-19",
        +  "o1-pro-all",
        +  "o3",
        +  "o3-2025-04-16",
        +  "o3-all",
        +  "o3-mini",
        +  "o3-mini-2025-01-31",
        +  "o3-mini-2025-01-31-high",
        +  "o3-mini-2025-01-31-low",
        +  "o3-mini-2025-01-31-medium",
        +  "o3-mini-all",
        +  "o3-mini-high",
        +  "o3-mini-high-all",
        +  "o3-mini-low",
        +  "o3-mini-medium",
        +  "o3-pro",
        +  "o3-pro-2025-06-10",
        +  "o4-mini",
        +  "o4-mini-2025-04-16",
        +  "o4-mini-all",
        +  "o4-mini-high-all",
        +  "deepseek-r1",
        +  "deepseek-r1-0528",
        +  "deepseek-v3",
        +  "deepseek-v3-250324",
        +  "deepseek-v4-flash",
        +  "deepseek-v4-pro",
        +  "grok-3",
        +  "grok-4.5",
        +  "glm-5.3",
        +  "glm-5.2",
        +  "glm-5",
        +  "glm-5-turbo",
        +  "glm-5.1",
        +  "glm-4.7",
        +  "glm-4.6",
        +  "glm-3-turbo"
        +]
    • Changedaichat_create_conversation_v21 field changed
      • changedInput schema / properties / model / enum
        Previous value: -[
        -  "gpt-4",
        -  "gpt-4.1",
        -  "gpt-4.1-mini",
        -  "gpt-4.1-nano",
        -  "gpt-4o",
        -  "gpt-4o-2024-05-13",
        -  "gpt-4o-all",
        -  "gpt-4o-image",
        -  "gpt-4o-mini",
        -  "gpt-5-all",
        -  "gpt-5.1-all",
        -  "gpt-5.2-pro",
        -  "gpt-5.4-mini",
        -  "gpt-5.4-nano",
        -  "gpt-image-1",
        -  "claude-3-5-haiku-20241022",
        -  "claude-3-5-sonnet-20240620",
        -  "claude-3-5-sonnet-20241022",
        -  "claude-3-7-sonnet-20250219",
        -  "claude-3-haiku-20240307",
        -  "claude-3-sonnet-20240229",
        -  "claude-fable-5",
        -  "claude-haiku-4-5-20251001",
        -  "claude-opus-4-1-20250805",
        -  "claude-opus-4-20250514",
        -  "claude-opus-4-5-20251101",
        -  "claude-opus-4-6",
        -  "claude-opus-5",
        -  "claude-opus-4-8",
        -  "claude-opus-4-7",
        -  "claude-sonnet-5",
        -  "claude-sonnet-4-20250514",
        -  "claude-sonnet-4-5-20250929",
        -  "claude-sonnet-4-6",
        -  "gemini-3.7-flash",
        -  "gemini-3.6-flash",
        -  "gemini-3.5-flash",
        -  "gemini-3.5-flash-lite",
        -  "gemini-3.1-flash-lite",
        -  "gemini-3.1-pro-preview",
        -  "gemini-3-flash-preview",
        -  "gemini-2.5-pro",
        -  "gemini-2.5-flash",
        -  "gemini-2.5-flash-lite",
        -  "grok-3",
        -  "grok-3-fast",
        -  "grok-4",
        -  "grok-4-0709",
        -  "grok-4.5",
        -  "deepseek-chat",
        -  "deepseek-r1",
        -  "deepseek-r1-0528",
        -  "deepseek-reasoner",
        -  "deepseek-v3",
        -  "deepseek-v3-250324",
        -  "deepseek-v3.2-exp",
        -  "deepseek-v4-flash",
        -  "deepseek-v4-pro",
        -  "kimi-k3",
        -  "kimi-k2.6",
        -  "kimi-k2-thinking",
        -  "kimi-k2-thinking-turbo",
        -  "kimi-k2.5",
        -  "glm-3-turbo",
        -  "glm-4.5",
        -  "glm-4.5v",
        -  "glm-4.6",
        -  "glm-4.7",
        -  "glm-5",
        -  "glm-5-turbo",
        -  "glm-5.3",
        -  "glm-5.1",
        -  "glm-5.2",
        -  "o1",
        -  "o1-mini",
        -  "o1-pro",
        -  "o3",
        -  "o3-mini",
        -  "o3-pro",
        -  "o4-mini"
        -]New value: +[
        +  "gpt-6-astra",
        +  "gpt-4",
        +  "gpt-4.1",
        +  "gpt-4.1-mini",
        +  "gpt-4.1-nano",
        +  "gpt-4o",
        +  "gpt-4o-2024-05-13",
        +  "gpt-4o-all",
        +  "gpt-4o-image",
        +  "gpt-4o-mini",
        +  "gpt-5-all",
        +  "gpt-5.1-all",
        +  "gpt-5.2-pro",
        +  "gpt-5.4-mini",
        +  "gpt-5.4-nano",
        +  "gpt-image-1",
        +  "claude-3-5-haiku-20241022",
        +  "claude-3-5-sonnet-20240620",
        +  "claude-3-5-sonnet-20241022",
        +  "claude-3-7-sonnet-20250219",
        +  "claude-3-haiku-20240307",
        +  "claude-3-sonnet-20240229",
        +  "claude-fable-5-1",
        +  "claude-fable-5",
        +  "claude-haiku-4-5-20251001",
        +  "claude-opus-4-1-20250805",
        +  "claude-opus-4-20250514",
        +  "claude-opus-4-5-20251101",
        +  "claude-opus-4-6",
        +  "claude-opus-5",
        +  "claude-opus-4-8",
        +  "claude-opus-4-7",
        +  "claude-sonnet-5",
        +  "claude-sonnet-4-20250514",
        +  "claude-sonnet-4-5-20250929",
        +  "claude-sonnet-4-6",
        +  "gemini-3.7-flash",
        +  "gemini-3.6-flash",
        +  "gemini-3.5-flash",
        +  "gemini-3.5-flash-lite",
        +  "gemini-3.1-flash-lite",
        +  "gemini-3.1-pro-preview",
        +  "gemini-3-flash-preview",
        +  "gemini-2.5-pro",
        +  "gemini-2.5-flash",
        +  "gemini-2.5-flash-lite",
        +  "grok-3",
        +  "grok-3-fast",
        +  "grok-4",
        +  "grok-4-0709",
        +  "grok-4.5",
        +  "deepseek-chat",
        +  "deepseek-r1",
        +  "deepseek-r1-0528",
        +  "deepseek-reasoner",
        +  "deepseek-v3",
        +  "deepseek-v3-250324",
        +  "deepseek-v3.2-exp",
        +  "deepseek-v4-flash",
        +  "deepseek-v4-pro",
        +  "kimi-k3",
        +  "kimi-k2.6",
        +  "kimi-k2-thinking",
        +  "kimi-k2-thinking-turbo",
        +  "kimi-k2.5",
        +  "glm-3-turbo",
        +  "glm-4.5",
        +  "glm-4.5v",
        +  "glm-4.6",
        +  "glm-4.7",
        +  "glm-5",
        +  "glm-5-turbo",
        +  "glm-5.3",
        +  "glm-5.1",
        +  "glm-5.2",
        +  "o1",
        +  "o1-mini",
        +  "o1-pro",
        +  "o3",
        +  "o3-mini",
        +  "o3-pro",
        +  "o4-mini"
        +]
  2. 2 tool updatesv0.1.6
    • Changedaichat_create_conversation1 field changed
      • changedInput schema / properties / model / enum
        Previous value: -[
        -  "gpt-5.6-luna",
        -  "gpt-5.6-terra",
        -  "gpt-5.6-sol",
        -  "gpt-5.5",
        -  "gpt-5.5-pro",
        -  "gpt-5.4",
        -  "gpt-5.4-pro",
        -  "gpt-5.4-mini",
        -  "gpt-5.4-nano",
        -  "gpt-5.2",
        -  "gpt-5.1",
        -  "gpt-5.1-all",
        -  "gpt-5",
        -  "gpt-5-mini",
        -  "gpt-5-nano",
        -  "gpt-5-all",
        -  "gpt-4",
        -  "gpt-4-all",
        -  "gpt-4-turbo",
        -  "gpt-4-turbo-preview",
        -  "gpt-4-vision-preview",
        -  "gpt-4.1",
        -  "gpt-4.1-2025-04-14",
        -  "gpt-4.1-mini",
        -  "gpt-4.1-mini-2025-04-14",
        -  "gpt-4.1-nano",
        -  "gpt-4.1-nano-2025-04-14",
        -  "gpt-4.5-preview",
        -  "gpt-4.5-preview-2025-02-27",
        -  "gpt-4o",
        -  "gpt-4o-2024-05-13",
        -  "gpt-4o-2024-08-06",
        -  "gpt-4o-2024-11-20",
        -  "gpt-4o-all",
        -  "gpt-4o-image",
        -  "gpt-4o-mini",
        -  "gpt-4o-mini-2024-07-18",
        -  "gpt-4o-mini-search-preview",
        -  "gpt-4o-mini-search-preview-2025-03-11",
        -  "gpt-4o-search-preview",
        -  "gpt-4o-search-preview-2025-03-11",
        -  "o1",
        -  "o1-2024-12-17",
        -  "o1-all",
        -  "o1-mini",
        -  "o1-mini-2024-09-12",
        -  "o1-mini-all",
        -  "o1-preview",
        -  "o1-preview-2024-09-12",
        -  "o1-preview-all",
        -  "o1-pro",
        -  "o1-pro-2025-03-19",
        -  "o1-pro-all",
        -  "o3",
        -  "o3-2025-04-16",
        -  "o3-all",
        -  "o3-mini",
        -  "o3-mini-2025-01-31",
        -  "o3-mini-2025-01-31-high",
        -  "o3-mini-2025-01-31-low",
        -  "o3-mini-2025-01-31-medium",
        -  "o3-mini-all",
        -  "o3-mini-high",
        -  "o3-mini-high-all",
        -  "o3-mini-low",
        -  "o3-mini-medium",
        -  "o3-pro",
        -  "o3-pro-2025-06-10",
        -  "o4-mini",
        -  "o4-mini-2025-04-16",
        -  "o4-mini-all",
        -  "o4-mini-high-all",
        -  "deepseek-r1",
        -  "deepseek-r1-0528",
        -  "deepseek-v3",
        -  "deepseek-v3-250324",
        -  "deepseek-v4-pro",
        -  "deepseek-v4-flash",
        -  "grok-3",
        -  "grok-4.5",
        -  "glm-5.2",
        -  "glm-5",
        -  "glm-5-turbo",
        -  "glm-5.1",
        -  "glm-4.7",
        -  "glm-4.6",
        -  "glm-3-turbo"
        -]New value: +[
        +  "gpt-5.6-luna",
        +  "gpt-5.6-terra",
        +  "gpt-5.6-sol",
        +  "gpt-5.5",
        +  "gpt-5.5-pro",
        +  "gpt-5.4",
        +  "gpt-5.4-pro",
        +  "gpt-5.4-mini",
        +  "gpt-5.4-nano",
        +  "gpt-5.2",
        +  "gpt-5.1",
        +  "gpt-5.1-all",
        +  "gpt-5",
        +  "gpt-5-mini",
        +  "gpt-5-nano",
        +  "gpt-5-all",
        +  "gpt-4",
        +  "gpt-4-all",
        +  "gpt-4-turbo",
        +  "gpt-4-turbo-preview",
        +  "gpt-4-vision-preview",
        +  "gpt-4.1",
        +  "gpt-4.1-2025-04-14",
        +  "gpt-4.1-mini",
        +  "gpt-4.1-mini-2025-04-14",
        +  "gpt-4.1-nano",
        +  "gpt-4.1-nano-2025-04-14",
        +  "gpt-4.5-preview",
        +  "gpt-4.5-preview-2025-02-27",
        +  "gpt-4o",
        +  "gpt-4o-2024-05-13",
        +  "gpt-4o-2024-08-06",
        +  "gpt-4o-2024-11-20",
        +  "gpt-4o-all",
        +  "gpt-4o-image",
        +  "gpt-4o-mini",
        +  "gpt-4o-mini-2024-07-18",
        +  "gpt-4o-mini-search-preview",
        +  "gpt-4o-mini-search-preview-2025-03-11",
        +  "gpt-4o-search-preview",
        +  "gpt-4o-search-preview-2025-03-11",
        +  "o1",
        +  "o1-2024-12-17",
        +  "o1-all",
        +  "o1-mini",
        +  "o1-mini-2024-09-12",
        +  "o1-mini-all",
        +  "o1-preview",
        +  "o1-preview-2024-09-12",
        +  "o1-preview-all",
        +  "o1-pro",
        +  "o1-pro-2025-03-19",
        +  "o1-pro-all",
        +  "o3",
        +  "o3-2025-04-16",
        +  "o3-all",
        +  "o3-mini",
        +  "o3-mini-2025-01-31",
        +  "o3-mini-2025-01-31-high",
        +  "o3-mini-2025-01-31-low",
        +  "o3-mini-2025-01-31-medium",
        +  "o3-mini-all",
        +  "o3-mini-high",
        +  "o3-mini-high-all",
        +  "o3-mini-low",
        +  "o3-mini-medium",
        +  "o3-pro",
        +  "o3-pro-2025-06-10",
        +  "o4-mini",
        +  "o4-mini-2025-04-16",
        +  "o4-mini-all",
        +  "o4-mini-high-all",
        +  "deepseek-r1",
        +  "deepseek-r1-0528",
        +  "deepseek-v3",
        +  "deepseek-v3-250324",
        +  "deepseek-v4-flash",
        +  "deepseek-v4-pro",
        +  "grok-3",
        +  "grok-4.5",
        +  "glm-5.3",
        +  "glm-5.2",
        +  "glm-5",
        +  "glm-5-turbo",
        +  "glm-5.1",
        +  "glm-4.7",
        +  "glm-4.6",
        +  "glm-3-turbo"
        +]
    • Changedaichat_create_conversation_v21 field changed
      • changedInput schema / properties / model / enum
        Previous value: -[
        -  "gpt-4",
        -  "gpt-4.1",
        -  "gpt-4.1-mini",
        -  "gpt-4.1-nano",
        -  "gpt-4o",
        -  "gpt-4o-2024-05-13",
        -  "gpt-4o-all",
        -  "gpt-4o-image",
        -  "gpt-4o-mini",
        -  "gpt-5-all",
        -  "gpt-5.1-all",
        -  "gpt-5.2-pro",
        -  "gpt-5.4-mini",
        -  "gpt-5.4-nano",
        -  "gpt-5.6-luna",
        -  "gpt-5.6-sol",
        -  "gpt-5.6-terra",
        -  "gpt-image-1",
        -  "claude-3-5-haiku-20241022",
        -  "claude-3-5-sonnet-20240620",
        -  "claude-3-5-sonnet-20241022",
        -  "claude-3-7-sonnet-20250219",
        -  "claude-3-haiku-20240307",
        -  "claude-3-sonnet-20240229",
        -  "claude-fable-5",
        -  "claude-haiku-4-5-20251001",
        -  "claude-opus-4-1-20250805",
        -  "claude-opus-4-20250514",
        -  "claude-opus-4-5-20251101",
        -  "claude-opus-4-6",
        -  "claude-opus-5",
        -  "claude-opus-4-8",
        -  "claude-opus-4-7",
        -  "claude-sonnet-5",
        -  "claude-sonnet-4-20250514",
        -  "claude-sonnet-4-5-20250929",
        -  "claude-sonnet-4-6",
        -  "gemini-2.0-flash-lite",
        -  "gemini-2.0-flash",
        -  "gemini-2.5-flash",
        -  "gemini-2.5-flash-lite",
        -  "gemini-2.5-pro",
        -  "gemini-3.0-pro",
        -  "gemini-3-pro-preview",
        -  "gemini-3.6-flash",
        -  "gemini-3-flash-preview",
        -  "gemini-3.1-flash-image-preview",
        -  "gemini-3.1-flash-lite-preview",
        -  "gemini-3.1-pro",
        -  "gemini-3.1-pro-preview",
        -  "gemini-3.5-flash",
        -  "grok-3",
        -  "grok-3-fast",
        -  "grok-4",
        -  "grok-4-0709",
        -  "grok-4.5",
        -  "deepseek-chat",
        -  "deepseek-r1",
        -  "deepseek-r1-0528",
        -  "deepseek-reasoner",
        -  "deepseek-v3",
        -  "deepseek-v3-250324",
        -  "deepseek-v3.2-exp",
        -  "deepseek-v4-pro",
        -  "deepseek-v4-flash",
        -  "kimi-k3",
        -  "kimi-k2.6",
        -  "kimi-k2-thinking",
        -  "kimi-k2-thinking-turbo",
        -  "kimi-k2.5",
        -  "glm-3-turbo",
        -  "glm-4.5",
        -  "glm-4.5v",
        -  "glm-4.6",
        -  "glm-4.7",
        -  "glm-5",
        -  "glm-5-turbo",
        -  "glm-5.1",
        -  "glm-5.2",
        -  "o1",
        -  "o1-mini",
        -  "o1-pro",
        -  "o3",
        -  "o3-mini",
        -  "o3-pro",
        -  "o4-mini"
        -]New value: +[
        +  "gpt-4",
        +  "gpt-4.1",
        +  "gpt-4.1-mini",
        +  "gpt-4.1-nano",
        +  "gpt-4o",
        +  "gpt-4o-2024-05-13",
        +  "gpt-4o-all",
        +  "gpt-4o-image",
        +  "gpt-4o-mini",
        +  "gpt-5-all",
        +  "gpt-5.1-all",
        +  "gpt-5.2-pro",
        +  "gpt-5.4-mini",
        +  "gpt-5.4-nano",
        +  "gpt-image-1",
        +  "claude-3-5-haiku-20241022",
        +  "claude-3-5-sonnet-20240620",
        +  "claude-3-5-sonnet-20241022",
        +  "claude-3-7-sonnet-20250219",
        +  "claude-3-haiku-20240307",
        +  "claude-3-sonnet-20240229",
        +  "claude-fable-5",
        +  "claude-haiku-4-5-20251001",
        +  "claude-opus-4-1-20250805",
        +  "claude-opus-4-20250514",
        +  "claude-opus-4-5-20251101",
        +  "claude-opus-4-6",
        +  "claude-opus-5",
        +  "claude-opus-4-8",
        +  "claude-opus-4-7",
        +  "claude-sonnet-5",
        +  "claude-sonnet-4-20250514",
        +  "claude-sonnet-4-5-20250929",
        +  "claude-sonnet-4-6",
        +  "gemini-3.7-flash",
        +  "gemini-3.6-flash",
        +  "gemini-3.5-flash",
        +  "gemini-3.5-flash-lite",
        +  "gemini-3.1-flash-lite",
        +  "gemini-3.1-pro-preview",
        +  "gemini-3-flash-preview",
        +  "gemini-2.5-pro",
        +  "gemini-2.5-flash",
        +  "gemini-2.5-flash-lite",
        +  "grok-3",
        +  "grok-3-fast",
        +  "grok-4",
        +  "grok-4-0709",
        +  "grok-4.5",
        +  "deepseek-chat",
        +  "deepseek-r1",
        +  "deepseek-r1-0528",
        +  "deepseek-reasoner",
        +  "deepseek-v3",
        +  "deepseek-v3-250324",
        +  "deepseek-v3.2-exp",
        +  "deepseek-v4-flash",
        +  "deepseek-v4-pro",
        +  "kimi-k3",
        +  "kimi-k2.6",
        +  "kimi-k2-thinking",
        +  "kimi-k2-thinking-turbo",
        +  "kimi-k2.5",
        +  "glm-3-turbo",
        +  "glm-4.5",
        +  "glm-4.5v",
        +  "glm-4.6",
        +  "glm-4.7",
        +  "glm-5",
        +  "glm-5-turbo",
        +  "glm-5.3",
        +  "glm-5.1",
        +  "glm-5.2",
        +  "o1",
        +  "o1-mini",
        +  "o1-pro",
        +  "o3",
        +  "o3-mini",
        +  "o3-pro",
        +  "o4-mini"
        +]
  3. 2 tool updatesv0.1.4
    • Changedaichat_create_conversation1 field changed
      • changedInput schema / properties / model / enum
        Previous value: -[
        -  "gpt-5.6-luna",
        -  "gpt-5.6-terra",
        -  "gpt-5.6-sol",
        -  "gpt-5.5",
        -  "gpt-5.5-pro",
        -  "gpt-5.4",
        -  "gpt-5.4-pro",
        -  "gpt-5.4-mini",
        -  "gpt-5.4-nano",
        -  "gpt-5.2",
        -  "gpt-5.1",
        -  "gpt-5.1-all",
        -  "gpt-5",
        -  "gpt-5-mini",
        -  "gpt-5-nano",
        -  "gpt-5-all",
        -  "gpt-4",
        -  "gpt-4-all",
        -  "gpt-4-turbo",
        -  "gpt-4-turbo-preview",
        -  "gpt-4-vision-preview",
        -  "gpt-4.1",
        -  "gpt-4.1-2025-04-14",
        -  "gpt-4.1-mini",
        -  "gpt-4.1-mini-2025-04-14",
        -  "gpt-4.1-nano",
        -  "gpt-4.1-nano-2025-04-14",
        -  "gpt-4.5-preview",
        -  "gpt-4.5-preview-2025-02-27",
        -  "gpt-4o",
        -  "gpt-4o-2024-05-13",
        -  "gpt-4o-2024-08-06",
        -  "gpt-4o-2024-11-20",
        -  "gpt-4o-all",
        -  "gpt-4o-image",
        -  "gpt-4o-mini",
        -  "gpt-4o-mini-2024-07-18",
        -  "gpt-4o-mini-search-preview",
        -  "gpt-4o-mini-search-preview-2025-03-11",
        -  "gpt-4o-search-preview",
        -  "gpt-4o-search-preview-2025-03-11",
        -  "o1",
        -  "o1-2024-12-17",
        -  "o1-all",
        -  "o1-mini",
        -  "o1-mini-2024-09-12",
        -  "o1-mini-all",
        -  "o1-preview",
        -  "o1-preview-2024-09-12",
        -  "o1-preview-all",
        -  "o1-pro",
        -  "o1-pro-2025-03-19",
        -  "o1-pro-all",
        -  "o3",
        -  "o3-2025-04-16",
        -  "o3-all",
        -  "o3-mini",
        -  "o3-mini-2025-01-31",
        -  "o3-mini-2025-01-31-high",
        -  "o3-mini-2025-01-31-low",
        -  "o3-mini-2025-01-31-medium",
        -  "o3-mini-all",
        -  "o3-mini-high",
        -  "o3-mini-high-all",
        -  "o3-mini-low",
        -  "o3-mini-medium",
        -  "o3-pro",
        -  "o3-pro-2025-06-10",
        -  "o4-mini",
        -  "o4-mini-2025-04-16",
        -  "o4-mini-all",
        -  "o4-mini-high-all",
        -  "deepseek-r1",
        -  "deepseek-r1-0528",
        -  "deepseek-v3",
        -  "deepseek-v3-250324",
        -  "deepseek-v4-flash",
        -  "grok-3",
        -  "grok-4.5",
        -  "glm-5.2",
        -  "glm-5",
        -  "glm-5-turbo",
        -  "glm-5.1",
        -  "glm-4.7",
        -  "glm-4.6",
        -  "glm-3-turbo"
        -]New value: +[
        +  "gpt-5.6-luna",
        +  "gpt-5.6-terra",
        +  "gpt-5.6-sol",
        +  "gpt-5.5",
        +  "gpt-5.5-pro",
        +  "gpt-5.4",
        +  "gpt-5.4-pro",
        +  "gpt-5.4-mini",
        +  "gpt-5.4-nano",
        +  "gpt-5.2",
        +  "gpt-5.1",
        +  "gpt-5.1-all",
        +  "gpt-5",
        +  "gpt-5-mini",
        +  "gpt-5-nano",
        +  "gpt-5-all",
        +  "gpt-4",
        +  "gpt-4-all",
        +  "gpt-4-turbo",
        +  "gpt-4-turbo-preview",
        +  "gpt-4-vision-preview",
        +  "gpt-4.1",
        +  "gpt-4.1-2025-04-14",
        +  "gpt-4.1-mini",
        +  "gpt-4.1-mini-2025-04-14",
        +  "gpt-4.1-nano",
        +  "gpt-4.1-nano-2025-04-14",
        +  "gpt-4.5-preview",
        +  "gpt-4.5-preview-2025-02-27",
        +  "gpt-4o",
        +  "gpt-4o-2024-05-13",
        +  "gpt-4o-2024-08-06",
        +  "gpt-4o-2024-11-20",
        +  "gpt-4o-all",
        +  "gpt-4o-image",
        +  "gpt-4o-mini",
        +  "gpt-4o-mini-2024-07-18",
        +  "gpt-4o-mini-search-preview",
        +  "gpt-4o-mini-search-preview-2025-03-11",
        +  "gpt-4o-search-preview",
        +  "gpt-4o-search-preview-2025-03-11",
        +  "o1",
        +  "o1-2024-12-17",
        +  "o1-all",
        +  "o1-mini",
        +  "o1-mini-2024-09-12",
        +  "o1-mini-all",
        +  "o1-preview",
        +  "o1-preview-2024-09-12",
        +  "o1-preview-all",
        +  "o1-pro",
        +  "o1-pro-2025-03-19",
        +  "o1-pro-all",
        +  "o3",
        +  "o3-2025-04-16",
        +  "o3-all",
        +  "o3-mini",
        +  "o3-mini-2025-01-31",
        +  "o3-mini-2025-01-31-high",
        +  "o3-mini-2025-01-31-low",
        +  "o3-mini-2025-01-31-medium",
        +  "o3-mini-all",
        +  "o3-mini-high",
        +  "o3-mini-high-all",
        +  "o3-mini-low",
        +  "o3-mini-medium",
        +  "o3-pro",
        +  "o3-pro-2025-06-10",
        +  "o4-mini",
        +  "o4-mini-2025-04-16",
        +  "o4-mini-all",
        +  "o4-mini-high-all",
        +  "deepseek-r1",
        +  "deepseek-r1-0528",
        +  "deepseek-v3",
        +  "deepseek-v3-250324",
        +  "deepseek-v4-pro",
        +  "deepseek-v4-flash",
        +  "grok-3",
        +  "grok-4.5",
        +  "glm-5.2",
        +  "glm-5",
        +  "glm-5-turbo",
        +  "glm-5.1",
        +  "glm-4.7",
        +  "glm-4.6",
        +  "glm-3-turbo"
        +]
    • Changedaichat_create_conversation_v22 fields changed
      • changedInput schema / properties / limit / anyOf
        Previous value: -[
        -  {
        -    "minimum": 1,
        -    "type": "integer"
        -  },
        -  {
        -    "type": "null"
        -  }
        -]New value: +[
        +  {
        +    "maximum": 100,
        +    "minimum": 1,
        +    "type": "integer"
        +  },
        +  {
        +    "type": "null"
        +  }
        +]
      • changedInput schema / properties / model / enum
        Previous value: -[
        -  "gpt-4",
        -  "gpt-4.1",
        -  "gpt-4.1-mini",
        -  "gpt-4.1-nano",
        -  "gpt-4o",
        -  "gpt-4o-2024-05-13",
        -  "gpt-4o-all",
        -  "gpt-4o-image",
        -  "gpt-4o-mini",
        -  "gpt-5-all",
        -  "gpt-5.1-all",
        -  "gpt-5.2-pro",
        -  "gpt-5.4-mini",
        -  "gpt-5.4-nano",
        -  "gpt-5.6-luna",
        -  "gpt-5.6-sol",
        -  "gpt-5.6-terra",
        -  "gpt-image-1",
        -  "claude-3-5-haiku-20241022",
        -  "claude-3-5-sonnet-20240620",
        -  "claude-3-5-sonnet-20241022",
        -  "claude-3-7-sonnet-20250219",
        -  "claude-3-haiku-20240307",
        -  "claude-3-opus-20240229",
        -  "claude-3-sonnet-20240229",
        -  "claude-fable-5",
        -  "claude-haiku-4-5-20251001",
        -  "claude-opus-4-1-20250805",
        -  "claude-opus-4-20250514",
        -  "claude-opus-4-5-20251101",
        -  "claude-opus-4-6",
        -  "claude-opus-5",
        -  "claude-opus-4-8",
        -  "claude-opus-4-7",
        -  "claude-sonnet-5",
        -  "claude-sonnet-4-20250514",
        -  "claude-sonnet-4-5-20250929",
        -  "claude-sonnet-4-6",
        -  "gemini-2.0-flash-lite",
        -  "gemini-2.5-flash-lite",
        -  "gemini-3-pro-preview",
        -  "gemini-3.1-flash-image-preview",
        -  "gemini-3.1-flash-lite-preview",
        -  "gemini-3.1-pro",
        -  "gemini-3.1-pro-preview",
        -  "gemini-3.5-flash",
        -  "grok-3",
        -  "grok-3-fast",
        -  "grok-4",
        -  "grok-4-0709",
        -  "grok-4.5",
        -  "deepseek-chat",
        -  "deepseek-r1",
        -  "deepseek-r1-0528",
        -  "deepseek-reasoner",
        -  "deepseek-v3",
        -  "deepseek-v3-250324",
        -  "deepseek-v3.2-exp",
        -  "deepseek-v4-flash",
        -  "kimi-k3",
        -  "kimi-k2.6",
        -  "kimi-k2-thinking",
        -  "kimi-k2-thinking-turbo",
        -  "kimi-k2.5",
        -  "glm-3-turbo",
        -  "glm-4.5",
        -  "glm-4.5v",
        -  "glm-4.6",
        -  "glm-4.7",
        -  "glm-5",
        -  "glm-5-turbo",
        -  "glm-5.1",
        -  "glm-5.2",
        -  "o1",
        -  "o1-mini",
        -  "o1-pro",
        -  "o3",
        -  "o3-mini",
        -  "o3-pro",
        -  "o4-mini"
        -]New value: +[
        +  "gpt-4",
        +  "gpt-4.1",
        +  "gpt-4.1-mini",
        +  "gpt-4.1-nano",
        +  "gpt-4o",
        +  "gpt-4o-2024-05-13",
        +  "gpt-4o-all",
        +  "gpt-4o-image",
        +  "gpt-4o-mini",
        +  "gpt-5-all",
        +  "gpt-5.1-all",
        +  "gpt-5.2-pro",
        +  "gpt-5.4-mini",
        +  "gpt-5.4-nano",
        +  "gpt-5.6-luna",
        +  "gpt-5.6-sol",
        +  "gpt-5.6-terra",
        +  "gpt-image-1",
        +  "claude-3-5-haiku-20241022",
        +  "claude-3-5-sonnet-20240620",
        +  "claude-3-5-sonnet-20241022",
        +  "claude-3-7-sonnet-20250219",
        +  "claude-3-haiku-20240307",
        +  "claude-3-sonnet-20240229",
        +  "claude-fable-5",
        +  "claude-haiku-4-5-20251001",
        +  "claude-opus-4-1-20250805",
        +  "claude-opus-4-20250514",
        +  "claude-opus-4-5-20251101",
        +  "claude-opus-4-6",
        +  "claude-opus-5",
        +  "claude-opus-4-8",
        +  "claude-opus-4-7",
        +  "claude-sonnet-5",
        +  "claude-sonnet-4-20250514",
        +  "claude-sonnet-4-5-20250929",
        +  "claude-sonnet-4-6",
        +  "gemini-2.0-flash-lite",
        +  "gemini-2.0-flash",
        +  "gemini-2.5-flash",
        +  "gemini-2.5-flash-lite",
        +  "gemini-2.5-pro",
        +  "gemini-3.0-pro",
        +  "gemini-3-pro-preview",
        +  "gemini-3.6-flash",
        +  "gemini-3-flash-preview",
        +  "gemini-3.1-flash-image-preview",
        +  "gemini-3.1-flash-lite-preview",
        +  "gemini-3.1-pro",
        +  "gemini-3.1-pro-preview",
        +  "gemini-3.5-flash",
        +  "grok-3",
        +  "grok-3-fast",
        +  "grok-4",
        +  "grok-4-0709",
        +  "grok-4.5",
        +  "deepseek-chat",
        +  "deepseek-r1",
        +  "deepseek-r1-0528",
        +  "deepseek-reasoner",
        +  "deepseek-v3",
        +  "deepseek-v3-250324",
        +  "deepseek-v3.2-exp",
        +  "deepseek-v4-pro",
        +  "deepseek-v4-flash",
        +  "kimi-k3",
        +  "kimi-k2.6",
        +  "kimi-k2-thinking",
        +  "kimi-k2-thinking-turbo",
        +  "kimi-k2.5",
        +  "glm-3-turbo",
        +  "glm-4.5",
        +  "glm-4.5v",
        +  "glm-4.6",
        +  "glm-4.7",
        +  "glm-5",
        +  "glm-5-turbo",
        +  "glm-5.1",
        +  "glm-5.2",
        +  "o1",
        +  "o1-mini",
        +  "o1-pro",
        +  "o3",
        +  "o3-mini",
        +  "o3-pro",
        +  "o4-mini"
        +]
  4. 1 tool updatev0.1.3
    • Changedaichat_create_conversation_v211 fields changed
      • addedInput schema / properties / allowed_mcp_servers
        Added value: +{
        +  "anyOf": [
        +    {
        +      "items": {
        +        "type": "string"
        +      },
        +      "type": "array"
        +    },
        +    {
        +      "type": "null"
        +    }
        +  ],
        +  "default": null,
        +  "description": "Optional list of MCP servers the agent may use.",
        +  "title": "Allowed Mcp Servers"
        +}
      • addedInput schema / properties / allowed_skills
        Added value: +{
        +  "anyOf": [
        +    {
        +      "items": {
        +        "type": "string"
        +      },
        +      "type": "array"
        +    },
        +    {
        +      "type": "null"
        +    }
        +  ],
        +  "default": null,
        +  "description": "Optional list of skills the agent may use.",
        +  "title": "Allowed Skills"
        +}
      • addedInput schema / properties / async
        Added value: +{
        +  "anyOf": [
        +    {
        +      "type": "boolean"
        +    },
        +    {
        +      "type": "null"
        +    }
        +  ],
        +  "default": null,
        +  "description": "Whether to process the request asynchronously.",
        +  "title": "Async"
        +}
      • addedInput schema / properties / callback_url
        Added value: +{
        +  "anyOf": [
        +    {
        +      "type": "string"
        +    },
        +    {
        +      "type": "null"
        +    }
        +  ],
        +  "default": null,
        +  "description": "Webhook URL to receive async completion callbacks.",
        +  "title": "Callback Url"
        +}
      • changedInput schema / properties / limit / anyOf
        Previous value: -[
        -  {
        -    "type": "integer"
        -  },
        -  {
        -    "type": "null"
        -  }
        -]New value: +[
        +  {
        +    "minimum": 1,
        +    "type": "integer"
        +  },
        +  {
        +    "type": "null"
        +  }
        +]
      • changedInput schema / properties / max_turns / anyOf
        Previous value: -[
        -  {
        -    "type": "integer"
        -  },
        -  {
        -    "type": "null"
        -  }
        -]New value: +[
        +  {
        +    "minimum": 1,
        +    "type": "integer"
        +  },
        +  {
        +    "type": "null"
        +  }
        +]
      • changedInput schema / properties / message / anyOf
        Previous value: -[
        -  {
        -    "additionalProperties": true,
        -    "type": "object"
        -  },
        -  {
        -    "type": "null"
        -  }
        -]New value: +[
        +  {
        +    "type": "string"
        +  },
        +  {
        +    "items": {
        +      "additionalProperties": true,
        +      "type": "object"
        +    },
        +    "type": "array"
        +  },
        +  {
        +    "type": "null"
        +  }
        +]
      • changedInput schema / properties / message / description
        Previous value: -"Single message object to include in the request."New value: +"Message payload as a string or structured content array."
      • changedInput schema / properties / model / enum
        Previous value: -[
        -  "gpt-4",
        -  "gpt-4.1",
        -  "gpt-4.1-mini",
        -  "gpt-4.1-nano",
        -  "gpt-4o",
        -  "gpt-4o-2024-05-13",
        -  "gpt-4o-all",
        -  "gpt-4o-image",
        -  "gpt-4o-mini",
        -  "gpt-5-all",
        -  "gpt-5.1-all",
        -  "gpt-5.2-pro",
        -  "gpt-5.4-mini",
        -  "gpt-5.4-nano",
        -  "gpt-5.6-luna",
        -  "gpt-5.6-terra",
        -  "gpt-5.6-sol",
        -  "gpt-image-1",
        -  "claude-3-5-haiku-20241022",
        -  "claude-3-5-sonnet-20240620",
        -  "claude-3-5-sonnet-20241022",
        -  "claude-3-7-sonnet-20250219",
        -  "claude-3-haiku-20240307",
        -  "claude-3-opus-20240229",
        -  "claude-3-sonnet-20240229",
        -  "claude-fable-5",
        -  "claude-haiku-4-5-20251001",
        -  "claude-opus-4-1-20250805",
        -  "claude-opus-4-20250514",
        -  "claude-opus-4-5-20251101",
        -  "claude-opus-4-6",
        -  "claude-opus-5",
        -  "claude-opus-4-8",
        -  "claude-opus-4-7",
        -  "claude-sonnet-5",
        -  "claude-sonnet-4-20250514",
        -  "claude-sonnet-4-5-20250929",
        -  "claude-sonnet-4-6",
        -  "gemini-2.0-flash-lite",
        -  "gemini-2.5-flash-lite",
        -  "gemini-3-pro-preview",
        -  "gemini-3.1-flash-image-preview",
        -  "gemini-3.1-flash-lite-preview",
        -  "gemini-3.1-pro",
        -  "gemini-3.1-pro-preview",
        -  "gemini-3.5-flash",
        -  "grok-3",
        -  "grok-3-fast",
        -  "grok-4",
        -  "grok-4-0709",
        -  "grok-4.5",
        -  "deepseek-chat",
        -  "deepseek-r1",
        -  "deepseek-r1-0528",
        -  "deepseek-reasoner",
        -  "deepseek-v3",
        -  "deepseek-v3-250324",
        -  "deepseek-v3.2-exp",
        -  "deepseek-v4-flash",
        -  "kimi-k3",
        -  "kimi-k2.6",
        -  "kimi-k2-0711-preview",
        -  "kimi-k2-0905-preview",
        -  "kimi-k2-instruct-0905",
        -  "kimi-k2-thinking",
        -  "kimi-k2-thinking-turbo",
        -  "kimi-k2-turbo-preview",
        -  "kimi-k2.5",
        -  "glm-3-turbo",
        -  "glm-4.5",
        -  "glm-4.5v",
        -  "glm-4.6",
        -  "glm-4.7",
        -  "glm-5",
        -  "glm-5-turbo",
        -  "glm-5.1",
        -  "glm-5.2",
        -  "o1",
        -  "o1-mini",
        -  "o1-pro",
        -  "o3",
        -  "o3-mini",
        -  "o3-pro",
        -  "o4-mini"
        -]New value: +[
        +  "gpt-4",
        +  "gpt-4.1",
        +  "gpt-4.1-mini",
        +  "gpt-4.1-nano",
        +  "gpt-4o",
        +  "gpt-4o-2024-05-13",
        +  "gpt-4o-all",
        +  "gpt-4o-image",
        +  "gpt-4o-mini",
        +  "gpt-5-all",
        +  "gpt-5.1-all",
        +  "gpt-5.2-pro",
        +  "gpt-5.4-mini",
        +  "gpt-5.4-nano",
        +  "gpt-5.6-luna",
        +  "gpt-5.6-sol",
        +  "gpt-5.6-terra",
        +  "gpt-image-1",
        +  "claude-3-5-haiku-20241022",
        +  "claude-3-5-sonnet-20240620",
        +  "claude-3-5-sonnet-20241022",
        +  "claude-3-7-sonnet-20250219",
        +  "claude-3-haiku-20240307",
        +  "claude-3-opus-20240229",
        +  "claude-3-sonnet-20240229",
        +  "claude-fable-5",
        +  "claude-haiku-4-5-20251001",
        +  "claude-opus-4-1-20250805",
        +  "claude-opus-4-20250514",
        +  "claude-opus-4-5-20251101",
        +  "claude-opus-4-6",
        +  "claude-opus-5",
        +  "claude-opus-4-8",
        +  "claude-opus-4-7",
        +  "claude-sonnet-5",
        +  "claude-sonnet-4-20250514",
        +  "claude-sonnet-4-5-20250929",
        +  "claude-sonnet-4-6",
        +  "gemini-2.0-flash-lite",
        +  "gemini-2.5-flash-lite",
        +  "gemini-3-pro-preview",
        +  "gemini-3.1-flash-image-preview",
        +  "gemini-3.1-flash-lite-preview",
        +  "gemini-3.1-pro",
        +  "gemini-3.1-pro-preview",
        +  "gemini-3.5-flash",
        +  "grok-3",
        +  "grok-3-fast",
        +  "grok-4",
        +  "grok-4-0709",
        +  "grok-4.5",
        +  "deepseek-chat",
        +  "deepseek-r1",
        +  "deepseek-r1-0528",
        +  "deepseek-reasoner",
        +  "deepseek-v3",
        +  "deepseek-v3-250324",
        +  "deepseek-v3.2-exp",
        +  "deepseek-v4-flash",
        +  "kimi-k3",
        +  "kimi-k2.6",
        +  "kimi-k2-thinking",
        +  "kimi-k2-thinking-turbo",
        +  "kimi-k2.5",
        +  "glm-3-turbo",
        +  "glm-4.5",
        +  "glm-4.5v",
        +  "glm-4.6",
        +  "glm-4.7",
        +  "glm-5",
        +  "glm-5-turbo",
        +  "glm-5.1",
        +  "glm-5.2",
        +  "o1",
        +  "o1-mini",
        +  "o1-pro",
        +  "o3",
        +  "o3-mini",
        +  "o3-pro",
        +  "o4-mini"
        +]
      • changedInput schema / properties / offset / anyOf
        Previous value: -[
        -  {
        -    "type": "integer"
        -  },
        -  {
        -    "type": "null"
        -  }
        -]New value: +[
        +  {
        +    "minimum": 0,
        +    "type": "integer"
        +  },
        +  {
        +    "type": "null"
        +  }
        +]
      • addedInput schema / properties / unattended_policy
        Added value: +{
        +  "anyOf": [
        +    {
        +      "additionalProperties": true,
        +      "type": "object"
        +    },
        +    {
        +      "type": "null"
        +    }
        +  ],
        +  "default": null,
        +  "description": "Optional unattended-execution policy configuration.",
        +  "title": "Unattended Policy"
        +}
  5. 2 tool updatesv0.1.2
    • Changedaichat_create_conversation1 field changed
      • changedInput schema / properties / model / enum
        Previous value: -[
        -  "gpt-5.5",
        -  "gpt-5.5-pro",
        -  "gpt-5.4",
        -  "gpt-5.4-pro",
        -  "gpt-5.2",
        -  "gpt-5.1",
        -  "gpt-5.1-all",
        -  "gpt-5",
        -  "gpt-5-mini",
        -  "gpt-5-nano",
        -  "gpt-5-all",
        -  "gpt-4",
        -  "gpt-4-all",
        -  "gpt-4-turbo",
        -  "gpt-4-turbo-preview",
        -  "gpt-4-vision-preview",
        -  "gpt-4.1",
        -  "gpt-4.1-2025-04-14",
        -  "gpt-4.1-mini",
        -  "gpt-4.1-mini-2025-04-14",
        -  "gpt-4.1-nano",
        -  "gpt-4.1-nano-2025-04-14",
        -  "gpt-4.5-preview",
        -  "gpt-4.5-preview-2025-02-27",
        -  "gpt-4o",
        -  "gpt-4o-2024-05-13",
        -  "gpt-4o-2024-08-06",
        -  "gpt-4o-2024-11-20",
        -  "gpt-4o-all",
        -  "gpt-4o-image",
        -  "gpt-4o-mini",
        -  "gpt-4o-mini-2024-07-18",
        -  "gpt-4o-mini-search-preview",
        -  "gpt-4o-mini-search-preview-2025-03-11",
        -  "gpt-4o-search-preview",
        -  "gpt-4o-search-preview-2025-03-11",
        -  "o1",
        -  "o1-2024-12-17",
        -  "o1-all",
        -  "o1-mini",
        -  "o1-mini-2024-09-12",
        -  "o1-mini-all",
        -  "o1-preview",
        -  "o1-preview-2024-09-12",
        -  "o1-preview-all",
        -  "o1-pro",
        -  "o1-pro-2025-03-19",
        -  "o1-pro-all",
        -  "o3",
        -  "o3-2025-04-16",
        -  "o3-all",
        -  "o3-mini",
        -  "o3-mini-2025-01-31",
        -  "o3-mini-2025-01-31-high",
        -  "o3-mini-2025-01-31-low",
        -  "o3-mini-2025-01-31-medium",
        -  "o3-mini-all",
        -  "o3-mini-high",
        -  "o3-mini-high-all",
        -  "o3-mini-low",
        -  "o3-mini-medium",
        -  "o3-pro",
        -  "o3-pro-2025-06-10",
        -  "o4-mini",
        -  "o4-mini-2025-04-16",
        -  "o4-mini-all",
        -  "o4-mini-high-all",
        -  "deepseek-r1",
        -  "deepseek-r1-0528",
        -  "deepseek-v3",
        -  "deepseek-v3-250324",
        -  "deepseek-v4-flash",
        -  "grok-3",
        -  "glm-5.1",
        -  "glm-4.7",
        -  "glm-4.6",
        -  "glm-3-turbo"
        -]New value: +[
        +  "gpt-5.6-luna",
        +  "gpt-5.6-terra",
        +  "gpt-5.6-sol",
        +  "gpt-5.5",
        +  "gpt-5.5-pro",
        +  "gpt-5.4",
        +  "gpt-5.4-pro",
        +  "gpt-5.4-mini",
        +  "gpt-5.4-nano",
        +  "gpt-5.2",
        +  "gpt-5.1",
        +  "gpt-5.1-all",
        +  "gpt-5",
        +  "gpt-5-mini",
        +  "gpt-5-nano",
        +  "gpt-5-all",
        +  "gpt-4",
        +  "gpt-4-all",
        +  "gpt-4-turbo",
        +  "gpt-4-turbo-preview",
        +  "gpt-4-vision-preview",
        +  "gpt-4.1",
        +  "gpt-4.1-2025-04-14",
        +  "gpt-4.1-mini",
        +  "gpt-4.1-mini-2025-04-14",
        +  "gpt-4.1-nano",
        +  "gpt-4.1-nano-2025-04-14",
        +  "gpt-4.5-preview",
        +  "gpt-4.5-preview-2025-02-27",
        +  "gpt-4o",
        +  "gpt-4o-2024-05-13",
        +  "gpt-4o-2024-08-06",
        +  "gpt-4o-2024-11-20",
        +  "gpt-4o-all",
        +  "gpt-4o-image",
        +  "gpt-4o-mini",
        +  "gpt-4o-mini-2024-07-18",
        +  "gpt-4o-mini-search-preview",
        +  "gpt-4o-mini-search-preview-2025-03-11",
        +  "gpt-4o-search-preview",
        +  "gpt-4o-search-preview-2025-03-11",
        +  "o1",
        +  "o1-2024-12-17",
        +  "o1-all",
        +  "o1-mini",
        +  "o1-mini-2024-09-12",
        +  "o1-mini-all",
        +  "o1-preview",
        +  "o1-preview-2024-09-12",
        +  "o1-preview-all",
        +  "o1-pro",
        +  "o1-pro-2025-03-19",
        +  "o1-pro-all",
        +  "o3",
        +  "o3-2025-04-16",
        +  "o3-all",
        +  "o3-mini",
        +  "o3-mini-2025-01-31",
        +  "o3-mini-2025-01-31-high",
        +  "o3-mini-2025-01-31-low",
        +  "o3-mini-2025-01-31-medium",
        +  "o3-mini-all",
        +  "o3-mini-high",
        +  "o3-mini-high-all",
        +  "o3-mini-low",
        +  "o3-mini-medium",
        +  "o3-pro",
        +  "o3-pro-2025-06-10",
        +  "o4-mini",
        +  "o4-mini-2025-04-16",
        +  "o4-mini-all",
        +  "o4-mini-high-all",
        +  "deepseek-r1",
        +  "deepseek-r1-0528",
        +  "deepseek-v3",
        +  "deepseek-v3-250324",
        +  "deepseek-v4-flash",
        +  "grok-3",
        +  "grok-4.5",
        +  "glm-5.2",
        +  "glm-5",
        +  "glm-5-turbo",
        +  "glm-5.1",
        +  "glm-4.7",
        +  "glm-4.6",
        +  "glm-3-turbo"
        +]
    • Changedaichat_create_conversation_v21 field changed
      • changedInput schema / properties / model / enum
        Previous value: -[
        -  "gpt-4",
        -  "gpt-4.1",
        -  "gpt-4.1-mini",
        -  "gpt-4.1-nano",
        -  "gpt-4o",
        -  "gpt-4o-2024-05-13",
        -  "gpt-4o-all",
        -  "gpt-4o-image",
        -  "gpt-4o-mini",
        -  "gpt-5-all",
        -  "gpt-5.1-all",
        -  "gpt-5.2-pro",
        -  "gpt-5.4-mini",
        -  "gpt-5.4-nano",
        -  "gpt-image-1",
        -  "claude-3-5-haiku-20241022",
        -  "claude-3-5-sonnet-20240620",
        -  "claude-3-5-sonnet-20241022",
        -  "claude-3-7-sonnet-20250219",
        -  "claude-3-haiku-20240307",
        -  "claude-3-opus-20240229",
        -  "claude-3-sonnet-20240229",
        -  "claude-haiku-4-5-20251001",
        -  "claude-opus-4-1-20250805",
        -  "claude-opus-4-20250514",
        -  "claude-opus-4-5-20251101",
        -  "claude-opus-4-6",
        -  "claude-opus-4-8",
        -  "claude-opus-4-7",
        -  "claude-sonnet-4-20250514",
        -  "claude-sonnet-4-5-20250929",
        -  "claude-sonnet-4-6",
        -  "gemini-2.0-flash-lite",
        -  "gemini-2.5-flash-lite",
        -  "gemini-3-pro-preview",
        -  "gemini-3.1-flash-image-preview",
        -  "gemini-3.1-flash-lite-preview",
        -  "gemini-3.1-pro",
        -  "gemini-3.1-pro-preview",
        -  "grok-3",
        -  "grok-3-fast",
        -  "grok-4",
        -  "grok-4-0709",
        -  "deepseek-chat",
        -  "deepseek-r1",
        -  "deepseek-r1-0528",
        -  "deepseek-reasoner",
        -  "deepseek-v3",
        -  "deepseek-v3-250324",
        -  "deepseek-v3.2-exp",
        -  "deepseek-v4-flash",
        -  "kimi-k2-0711-preview",
        -  "kimi-k2-0905-preview",
        -  "kimi-k2-instruct-0905",
        -  "kimi-k2-thinking",
        -  "kimi-k2-thinking-turbo",
        -  "kimi-k2-turbo-preview",
        -  "kimi-k2.5",
        -  "glm-3-turbo",
        -  "glm-4.5",
        -  "glm-4.5v",
        -  "glm-4.6",
        -  "glm-4.7",
        -  "glm-5",
        -  "glm-5-turbo",
        -  "glm-5.1",
        -  "o1",
        -  "o1-mini",
        -  "o1-pro",
        -  "o3",
        -  "o3-mini",
        -  "o3-pro",
        -  "o4-mini"
        -]New value: +[
        +  "gpt-4",
        +  "gpt-4.1",
        +  "gpt-4.1-mini",
        +  "gpt-4.1-nano",
        +  "gpt-4o",
        +  "gpt-4o-2024-05-13",
        +  "gpt-4o-all",
        +  "gpt-4o-image",
        +  "gpt-4o-mini",
        +  "gpt-5-all",
        +  "gpt-5.1-all",
        +  "gpt-5.2-pro",
        +  "gpt-5.4-mini",
        +  "gpt-5.4-nano",
        +  "gpt-5.6-luna",
        +  "gpt-5.6-terra",
        +  "gpt-5.6-sol",
        +  "gpt-image-1",
        +  "claude-3-5-haiku-20241022",
        +  "claude-3-5-sonnet-20240620",
        +  "claude-3-5-sonnet-20241022",
        +  "claude-3-7-sonnet-20250219",
        +  "claude-3-haiku-20240307",
        +  "claude-3-opus-20240229",
        +  "claude-3-sonnet-20240229",
        +  "claude-fable-5",
        +  "claude-haiku-4-5-20251001",
        +  "claude-opus-4-1-20250805",
        +  "claude-opus-4-20250514",
        +  "claude-opus-4-5-20251101",
        +  "claude-opus-4-6",
        +  "claude-opus-5",
        +  "claude-opus-4-8",
        +  "claude-opus-4-7",
        +  "claude-sonnet-5",
        +  "claude-sonnet-4-20250514",
        +  "claude-sonnet-4-5-20250929",
        +  "claude-sonnet-4-6",
        +  "gemini-2.0-flash-lite",
        +  "gemini-2.5-flash-lite",
        +  "gemini-3-pro-preview",
        +  "gemini-3.1-flash-image-preview",
        +  "gemini-3.1-flash-lite-preview",
        +  "gemini-3.1-pro",
        +  "gemini-3.1-pro-preview",
        +  "gemini-3.5-flash",
        +  "grok-3",
        +  "grok-3-fast",
        +  "grok-4",
        +  "grok-4-0709",
        +  "grok-4.5",
        +  "deepseek-chat",
        +  "deepseek-r1",
        +  "deepseek-r1-0528",
        +  "deepseek-reasoner",
        +  "deepseek-v3",
        +  "deepseek-v3-250324",
        +  "deepseek-v3.2-exp",
        +  "deepseek-v4-flash",
        +  "kimi-k3",
        +  "kimi-k2.6",
        +  "kimi-k2-0711-preview",
        +  "kimi-k2-0905-preview",
        +  "kimi-k2-instruct-0905",
        +  "kimi-k2-thinking",
        +  "kimi-k2-thinking-turbo",
        +  "kimi-k2-turbo-preview",
        +  "kimi-k2.5",
        +  "glm-3-turbo",
        +  "glm-4.5",
        +  "glm-4.5v",
        +  "glm-4.6",
        +  "glm-4.7",
        +  "glm-5",
        +  "glm-5-turbo",
        +  "glm-5.1",
        +  "glm-5.2",
        +  "o1",
        +  "o1-mini",
        +  "o1-pro",
        +  "o3",
        +  "o3-mini",
        +  "o3-pro",
        +  "o4-mini"
        +]
  6. 4 tool updatesv0.1.0
    • First observedaichat_create_conversation
    • First observedaichat_create_conversation_v2
    • First observedaichat_get_usage_guide
    • First observedaichat_list_models

TDQS

B3.4/5.0
Disambiguation2/5

The two conversation creation tools (aichat_create_conversation and aichat_create_conversation_v2) overlap heavily and leave it unclear when to use which, despite the v2 suffix. The list_models and usage guide tools are distinct, but the primary workflow has ambiguous entry points.

Naming Consistency5/5

All tools share the aichat_ prefix and follow a consistent verb_noun pattern: create_conversation, create_conversation_v2, list_models, get_usage_guide. The v2 suffix is a clear and predictable variant.

Tool Count4/5

Four tools is a reasonable size for a focused chat API server. However, one tool is a usage guide rather than a functional operation, and create_conversation_v2 appears redundant, making the effective count feel slightly padded.

Completeness3/5

The core capabilities of listing models and creating/continuing conversations are present, but there is no explicit way to retrieve conversation history, manage prior conversations, or delete them. The domain is simple enough that these may not be required, but the v2 tool suggests unfinished coverage.

Maintenance

ActivityActive
ResponsivenessNo issues

Resources

Unclaimed servers have limited discoverability.

Looking for Admin?

If you are the server author, to access and configure the admin panel.

Related MCP Connectors

Related MCP Servers

  • A
    license
    A
    quality
    D
    maintenance
    An MCP server that enables AI applications to access 20+ model providers (including OpenAI, Anthropic, Google) through a unified interface for text and image generation.
    2
    30
    MIT
  • A
    license
    B
    quality
    D
    maintenance
    An MCP protocol server that supports multi-AI personality summoning and collaboration, which can be used for intelligent collaboration in multiple scenarios such as code analysis and product design.
    4
    1
    Apache 2.0
  • A
    license
    A
    quality
    A
    maintenance
    MCP server for DeepSeek AI models (Chat + Reasoner). Supports multi-turn sessions, model fallback with circuit breaker, function calling, thinking mode, JSON output, multimodal input, and cost tracking.
    3
    517
    17
    MIT

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/AceDataCloud/AiChatMCP'

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