AiChat MCP Server
OfficialProvides access to a wide range of OpenAI models (GPT-4/5, o-series, etc.) for AI chat conversations, supporting multi-turn dialogues and stateful session management.
Click on "Install Server".
Wait a few minutes for the server to deploy. Once ready, it will show a "Started" state.
In the chat, type
@followed by the MCP server name and your instructions, e.g., "@AiChat MCP ServerStart a conversation with GPT-4o about machine learning."
That's it! The server will respond to your query, and you can continue using it as needed.
Here is a step-by-step guide with screenshots.
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-aichatConfiguration
Set your AceDataCloud API token:
export ACEDATACLOUD_API_TOKEN=your_token_hereGet your token from https://platform.acedata.cloud.
Usage
stdio mode (default)
mcp-aichatHTTP mode
mcp-aichat --transport http --port 8000Available Tools
Tool | Description |
| Create an AI conversation with any supported model |
| Create/manage conversations via |
| List all available AI models |
| 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
License
MIT
Available Tools
4 toolsaichat_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.
| Name | Required | Description | Default |
|---|---|---|---|
| model | No | The 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 |
| preset | No | An optional preset model configuration to apply for this conversation. | |
| question | Yes | The prompt or question to be answered by the AI model. Required. | |
| stateful | No | Whether to use stateful conversation mode. When True, the server tracks conversation history. Default is False (stateless). | |
| references | No | Optional list of reference sources or context to include when generating the answer. | |
| conversation_id | No | The 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
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
| id | No | Conversation ID. Required for retrieve/update/delete actions. | |
| async | No | Whether to process the request asynchronously. | |
| limit | No | Pagination limit for retrieve_batch. | |
| model | No | Model to use for the request. | gpt-4.1 |
| title | No | Conversation title. | |
| action | No | Operation to perform: chat (default), retrieve, retrieve_batch, update, or delete. | chat |
| offset | No | Pagination offset for retrieve_batch. | |
| preset | No | Optional preset model configuration. | |
| message | No | Message payload as a string or structured content array. | |
| user_id | No | Filter or associate by user ID. | |
| messages | No | Conversation messages for update/action workflows. | |
| question | No | Question text for chat action. | |
| stateful | No | Whether to use stateful conversation mode. | |
| max_turns | No | Maximum number of turns for conversation history. | |
| references | No | Optional list of reference sources. | |
| model_group | No | Provider group filter for retrieve_batch. | |
| callback_url | No | Webhook URL to receive async completion callbacks. | |
| tool_results | No | Tool call results for follow-up turns. | |
| allowed_skills | No | Optional list of skills the agent may use. | |
| application_id | No | Filter or associate by application ID. | |
| unattended_policy | No | Optional unattended-execution policy configuration. | |
| allowed_mcp_servers | No | Optional list of MCP servers the agent may use. |
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
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.
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.
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.
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.
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.
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.
| Name | Required | Description | Default |
|---|---|---|---|
No parameters | |||
Output Schema
| Name | Required | Description |
|---|---|---|
| result | Yes |
TDQS
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.
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.
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.
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.
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.
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.
2 tool updates
v0.1.7- Changed
aichat_create_conversation1 field changed- changed
Input schema / properties / model / enumPrevious 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" +]
- Changed
aichat_create_conversation_v21 field changed- changed
Input schema / properties / model / enumPrevious 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 tool updates
v0.1.6- Changed
aichat_create_conversation1 field changed- changed
Input schema / properties / model / enumPrevious 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" +]
- Changed
aichat_create_conversation_v21 field changed- changed
Input schema / properties / model / enumPrevious 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" +]
2 tool updates
v0.1.4- Changed
aichat_create_conversation1 field changed- changed
Input schema / properties / model / enumPrevious 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" +]
- Changed
aichat_create_conversation_v22 fields changed- changed
Input schema / properties / limit / anyOfPrevious value: -[ - { - "minimum": 1, - "type": "integer" - }, - { - "type": "null" - } -]New value: +[ + { + "maximum": 100, + "minimum": 1, + "type": "integer" + }, + { + "type": "null" + } +] - changed
Input schema / properties / model / enumPrevious 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" +]
1 tool update
v0.1.3- Changed
aichat_create_conversation_v211 fields changed- added
Input schema / properties / allowed_mcp_serversAdded 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" +} - added
Input schema / properties / allowed_skillsAdded value: +{ + "anyOf": [ + { + "items": { + "type": "string" + }, + "type": "array" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Optional list of skills the agent may use.", + "title": "Allowed Skills" +} - added
Input schema / properties / asyncAdded value: +{ + "anyOf": [ + { + "type": "boolean" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Whether to process the request asynchronously.", + "title": "Async" +} - added
Input schema / properties / callback_urlAdded value: +{ + "anyOf": [ + { + "type": "string" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Webhook URL to receive async completion callbacks.", + "title": "Callback Url" +} - changed
Input schema / properties / limit / anyOfPrevious value: -[ - { - "type": "integer" - }, - { - "type": "null" - } -]New value: +[ + { + "minimum": 1, + "type": "integer" + }, + { + "type": "null" + } +] - changed
Input schema / properties / max_turns / anyOfPrevious value: -[ - { - "type": "integer" - }, - { - "type": "null" - } -]New value: +[ + { + "minimum": 1, + "type": "integer" + }, + { + "type": "null" + } +] - changed
Input schema / properties / message / anyOfPrevious value: -[ - { - "additionalProperties": true, - "type": "object" - }, - { - "type": "null" - } -]New value: +[ + { + "type": "string" + }, + { + "items": { + "additionalProperties": true, + "type": "object" + }, + "type": "array" + }, + { + "type": "null" + } +] - changed
Input schema / properties / message / descriptionPrevious value: -"Single message object to include in the request."New value: +"Message payload as a string or structured content array." - changed
Input schema / properties / model / enumPrevious 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" +] - changed
Input schema / properties / offset / anyOfPrevious value: -[ - { - "type": "integer" - }, - { - "type": "null" - } -]New value: +[ + { + "minimum": 0, + "type": "integer" + }, + { + "type": "null" + } +] - added
Input schema / properties / unattended_policyAdded value: +{ + "anyOf": [ + { + "additionalProperties": true, + "type": "object" + }, + { + "type": "null" + } + ], + "default": null, + "description": "Optional unattended-execution policy configuration.", + "title": "Unattended Policy" +}
2 tool updates
v0.1.2- Changed
aichat_create_conversation1 field changed- changed
Input schema / properties / model / enumPrevious 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" +]
- Changed
aichat_create_conversation_v21 field changed- changed
Input schema / properties / model / enumPrevious 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" +]
4 tool updates
v0.1.0- First observed
aichat_create_conversation - First observed
aichat_create_conversation_v2 - First observed
aichat_get_usage_guide - First observed
aichat_list_models
TDQS
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.
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.
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.
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
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
MCP server for building and testing AI agents with multi-model experimentation and insights.
MCP server for GLM chat completions using Zhipu AI models via AceDataCloud
MCP server for Qwen Image 3 AI image generation
MCP server unifying ERPs, CRMs, APIs and knowledge base for Claude, ChatGPT and Gemini.
Related MCP Servers
- AlicenseAqualityDmaintenanceAn MCP server that enables AI applications to access 20+ model providers (including OpenAI, Anthropic, Google) through a unified interface for text and image generation.230MIT
- AlicenseBqualityDmaintenanceAn 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.41Apache 2.0
- AlicenseAqualityAmaintenanceMCP 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.351717MIT
- AlicenseAqualityAmaintenanceAn MCP server for Grok (xAI) that enables chat, reasoning, vision, and video generation using the AceDataCloud API.81MIT
Latest Blog Posts
- Who's Calling? MCP Hosts Are an Identity Blind Spot (And the Spec Knows It)By Om-Shree-0709 on .mcpAgent IdentityOAuth 2.1
- Your AI Chatbot Just Exposed Your CEO's Salary to an InternBy Om-Shree-0709 on .Agent IdentityMCP SecurityOAuth Delegation
- Why MCP Servers Need Execution Sandboxing (And Why Your Current Stack Isn't Enough)By Om-Shree-0709 on .Agentic AiPrompt InjectionWebAssembly
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