MCP Server

MCP server for AI dialogue using various LLM models via AceDataCloud

Local serverstdio

What is the MCP MCP server?

MCP server for AI dialogue using various LLM models via AceDataCloud. That is what the mcp mcp server brings to an AI assistant: the same capability, reachable through the Model Context Protocol rather than a separate app or dashboard.

The short version

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.

  • 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

The tools it exposes

The server publishes 6 tools. What each one is for:

  • 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
  • OpenAI — The OpenAI tool exposed by this server
  • DeepSeek — The DeepSeek tool exposed by this server

What it needs from you

Configuration is passed through the environment: ACEDATACLOUD_API_TOKEN. Treat anything key-shaped as a real credential — scope it to the minimum the server needs, and rotate it if it ever lands in a shared config.

Getting it running

The server ships on PyPI as mcp-aichat, so your MCP client can launch it on demand — there is no separate build step. Add the server block to your client's configuration, restart it, and the tools register themselves.

How it compares

Among the AI and media services options, the useful question is rarely "what can it do" but "what does it cost you to run" — permissions, credentials, and how much of your context its toolset consumes. MCP's toolset — aichat_create_conversation, aichat_create_conversation_v2, aichat_list_models and 3 more — is a fair guide to whether it matches your workflow. It is maintained by AceDataCloud; worth a glance at recent repository activity before you build anything load-bearing on it.

This entry was verified against MCP's own documentation before publication; SyncDev keeps the directory reviewed rather than auto-generated.

Things to watch

  • It runs with your machine's permissions. That is convenient and also the reason to think about what you point it at before you approve a tool call.
  • Missing credentials fail quietly in some clients — if no tools show up, check the environment block first.
  • Keep per-call confirmation enabled while you learn its behaviour; it is the cheapest safeguard you have.

Available tools

ToolWhat it does
aichat_create_conversationCreate an AI conversation with any supported model
aichat_create_conversation_v2Create/manage conversations via /aichat2/conversations
aichat_list_modelsList all available AI models
aichat_get_usage_guideGet API usage guide
OpenAIThe OpenAI tool exposed by this server.
DeepSeekThe DeepSeek tool exposed by this server.

How to install the MCP MCP server

{
  "mcpServers": {
    "aichat": {
      "command": "uvx",
      "args": ["mcp-aichat"],
      "env": {
        "ACEDATACLOUD_API_TOKEN": "your-value"
      }
    }
  }
}

Add to claude_desktop_config.json, then restart Claude Desktop.

Configuration

VariableDescriptionRequired
ACEDATACLOUD_API_TOKENCredential the server authenticates with.Yes

Example prompts to try

  • Use MCP to aichat create conversation.
  • Use MCP to aichat create conversation v2.
  • Use MCP to aichat list models.

Frequently asked questions

It connects MCP to MCP-compatible AI assistants such as Claude and Cursor, exposing 6 tools (aichat_create_conversation, aichat_create_conversation_v2, aichat_list_models, and more) that the assistant can call on your behalf. Instead of copying data back and forth by hand, the assistant works with MCP directly.