A basic Node.js MCP server that provides comprehensive ECL EC support.
- Install dependencies:
npm install github:ec-doris/ecl-v5-mcpTo run the server using stdio transport:
node node_modules/ecl-v5-mcp/index.jsThis server is designed to be used with MCP clients that communicate via stdio.
Configure the client to connect to this server for MCP tool calls.
{
"servers": {
"ecl": {
"type": "stdio",
"command": "node",
"args": [
"/Users/xxx/ecl-v5-mcp/index.js"
]
}
}
}be sure to use the full path of the index.js file.