DHTMLX MCP Server
The DHTMLX MCP server provides real-time access to official docs and a smart RAG.
On this page
AI coding assistants often rely on training data that may not include the latest updates. As a result, generated code may reference outdated APIs or missing features.
The DHTMLX MCP server allows AI tools to retrieve up-to-date documentation for DHTMLX components while generating responses. By connecting an assistant to the MCP endpoint, developers can generate code examples, query APIs, and access configuration details based on the current documentation.
MCP endpoint
https://docs.dhtmlx.com/mcp
note
The DHTMLX MCP server is a shared service for all major DHTMLX products, not only DHTMLX Suite. The configuration instructions apply to any DHTMLX component you are working with.
Typical use cases include:
- Retrieving documentation for a specific component.
- Generating code examples based on current APIs.
- Understanding configuration options, methods, and events.
How DHTMLX MCP server works
The DHTMLX MCP server uses a Retrieval-Augmented Generation (RAG) pipeline combined with the Model Context Protocol (MCP) to provide AI assistants with up-to-date documentation.
At a high level:
- The AI assistant sends a query through MCP.
- The server determines which product documentation is relevant.
- Documentation content is retrieved from a vector index.
- The retrieved context is sent back to the assistant.
- The assistant generates a response using that context.
This approach allows AI tools to generate answers based on current documentation rather than training data alone.
Setup��
Most AI development tools allow adding MCP endpoints through either a CLI command or a JSON configuration file. The configuration generally consists of registering the MCP server URL.
Below are examples for commonly used tools.
### Claude Code
info
Learn how to connect Claude Code with MCP in the official documentation.
The quickest way is to add the MCP server URL through the CLI:
claude mcp add --transport http dhtmlx-mcp https://docs.dhtmlx.com/mcp
Or if you prefer manual configuration, add this to your `mcp.json`:
{ "mcpServers": { "dhtmlx-mcp": { "type": "http", "url": "https://docs.dhtmlx.com/mcp" } } }
### Cursor
info
For detailed instructions, see the official documentation.
Follow the steps below:
1. Open Settings (`Cmd+Shift+J` on Mac, `Ctrl+Shift+J` on Windows/Linux)
2. Go to **Tools & MCP**
3. Click **Add Custom MCP**
4. Paste this config:
{ "mcpServers": { "dhtmlx-mcp": { "url": "https://docs.dhtmlx.com/mcp" } } }
### Gemini CLI
info
The official documentation provides a complete guide to configuring and using MCP servers with the Gemini CLI.
To connect via the CLI, use:
gemini mcp add --transport http dhtmlx-mcp https://docs.dhtmlx.com/mcp
Alternatively, you can find your config file at `~/.gemini/settings.json` and add:
Restart Gemini CLI after saving the file.
Antigravity (Google)
info
Learn more about connecting MCP servers in the official documentation.
These are the steps to complete:
- Open the command palette
- Type "mcp add"
- Select "HTTP"
- Provide the following values:
- Name:
dhtmlx-mcp
- URL:
### ChatGPT
info
For more information, consult the official documentation.
Follow these steps:
1. Go to **Settings** → **Apps & Connectors**
2. Click **Advanced settings**
3. Enable **Developer mode**
4. Return to the **Apps & Connectors** screen and click "Create"
5. Configure the connector:
* Name:
dhtmlx-mcp
* URL:
- Authentication:
No authentication
- Click Create
Once added, ChatGPT can retrieve documentation from the MCP server during conversations.
warning
For intensive coding workflows, other MCP-aware tools may be more efficient.
Other tools
Most modern AI coding tools expose MCP under "Model Context Protocol", "Context Sources", or similar wording in settings. Add https://docs.dhtmlx.com/mcp as a custom source.
Privacy and data handling
The MCP server is a hosted service.
Key points:
- It does not run locally.
- It does not access files in your environment.
- It does not store personal user information.
Queries may be logged for debugging and service improvements.
Organizations that require stricter privacy guarantees can request commercial deployment options with no query logging. For inquiries: [email protected].
Usage tips
Once the MCP server is configured, use concrete, task-oriented prompts so the assistant can call the docs effectively.
You can copy and test the example prompts given below:
How do I add custom validation to DHTMLX Form? Use the docs.
I want to create a layout with a calendar in one cell, and a grid in another.
I want to create a grid with the possibility to sort, resize and edit column cells.
I have a chart with the bar type, how can I also add a line chart above it?
I want to create two grids with the possibility to drag item rows from one grid to another, but not vice versa.
More specific prompts result in more relevant snippets and fewer follow-up questions.
Related sample: Kanban and Chatbot. Example built with MCP
Related Servers
Scout Monitoring MCP
sponsorPut performance and error data directly in the hands of your AI assistant.
Alpha Vantage MCP Server
sponsorAccess financial market data: realtime & historical stock, ETF, options, forex, crypto, commodities, fundamentals, technical indicators, & more
Drupal Tools
A server providing resources, tools, and prompts for Drupal development.
Terraform MCP
A command-line tool that acts as an MCP server to interact with Terraform environments.
MCPfinder
A Node.js server for AI agents to discover, install, and manage new capabilities on demand via the MCP protocol.
MCP Server with Ollama Integration
An MCP server that integrates with Ollama to provide tools for file operations, calculations, and text processing. Requires a running Ollama instance.
Modellix Docs
Search the Modellix knowledge base to quickly find relevant technical information, code examples, and API references. Retrieve implementation details and official guides to solve development queries efficiently. Access direct links to documentation for deeper context on specific features and tools.
Raysurfer Code Caching
MCP server for LLM output caching and reuse. Caches and retrieves code from prior AI agent executions, delivering cached outputs up to 30x faster.
x402engine
50+ pay-per-call APIs for AI agents via HTTP 402 crypto micropayments. $0.001–$0.12 per call with USDC and USDm.
Devvit
A companion server for building applications on Reddit's developer platform.
MCP with Claude
A Spring Boot MCP server that provides company details, requiring the Claude Desktop application to function.
Authless Remote MCP Server
An authentication-free, remote MCP server designed for deployment on Cloudflare Workers.