Overview
Apache Doris MCP Server is a server designed for Apache Doris, which implements the Model Context Protocol (MCP) to facilitate data management and processing.
To use the server, set up the environment with the required parameters and run the command using the provided cursor setup. You can also run the MCP Inspector for development purposes.
- Implements Model Context Protocol for efficient data handling - Supports integration with Apache Doris - Provides a development environment for testing and publishing
- Managing data workflows in Apache Doris.
- Developing and testing data processing applications.
- Publishing data models using the MCP framework.
Add to your AI client
Use these steps to connect Apache Doris MCP Server in Cursor, Claude, VS Code, and other MCP-compatible apps. The same JSON appears in the Use with menu above for one-click copy.
Cursor
Add this to your .cursor/mcp.json file in your project root, then restart Cursor.
.cursor/mcp.json
{
"mcpServers": {
"mcp-doris-morningman": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-doris-morningman"
]
}
}
}Claude Desktop
Add this server entry to the mcpServers object in your Claude Desktop config, then restart the app.
~/Library/Application Support/Claude/claude_desktop_config.json (macOS) or %APPDATA%\Claude\claude_desktop_config.json (Windows)
{
"mcpServers": {
"mcp-doris-morningman": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-doris-morningman"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-doris-morningman": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-doris-morningman"
]
}
}
}VS Code (Copilot)
Add this to your .vscode/mcp.json file. Requires the GitHub Copilot extension with MCP support enabled.
.vscode/mcp.json
{
"servers": {
"mcp-doris-morningman": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-doris-morningman"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-doris-morningman": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-doris-morningman"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-doris-morningman": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-doris-morningman"
]
}
}
}FAQ
What is the Model Context Protocol?
The Model Context Protocol is a standard for managing and processing data models in a consistent manner.
Is there a specific environment required to run the server?
Yes, you need to install the 'uv' package and set up the environment variables as specified in the usage instructions.
Can I contribute to the development of Apache Doris MCP Server?
Yes, contributions are welcome! You can find the repository on GitHub.