mcp-server-datahub
The official Model Context Protocol (MCP) server for DataHub (
Overview
The mcp-server-datahub is a data integration server designed to facilitate the synchronization and management of data across various sources.
To use mcp-server-datahub, set up the environment by running the provided setup commands, initialize the datahub token, and run the server in development mode.
- Easy setup and configuration for data synchronization. - Development mode for testing and debugging. - Integration with the datahub for seamless data management.
- Synchronizing data from multiple sources for analysis.
- Managing data workflows in research projects.
- Facilitating data integration in cloud applications.
Add to your AI client
Use these steps to connect mcp-server-datahub 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-server-datahub-acryldata": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-datahub-acryldata"
]
}
}
}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-server-datahub-acryldata": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-datahub-acryldata"
]
}
}
}Claude Code
Add this to your project's .mcp.json file. Claude Code will detect it automatically.
.mcp.json (project root)
{
"mcpServers": {
"mcp-server-datahub-acryldata": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-datahub-acryldata"
]
}
}
}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-server-datahub-acryldata": {
"type": "stdio",
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-datahub-acryldata"
]
}
}
}Windsurf
Add this to your Windsurf MCP config file, then restart Windsurf.
~/.codeium/windsurf/mcp_config.json
{
"mcpServers": {
"mcp-server-datahub-acryldata": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-datahub-acryldata"
]
}
}
}Cline
Open Cline settings, navigate to MCP Servers, and add this server configuration.
Cline MCP Settings (via UI)
{
"mcpServers": {
"mcp-server-datahub-acryldata": {
"command": "npx",
"args": [
"-y",
"@modelcontextprotocol/server-mcp-server-datahub-acryldata"
]
}
}
}FAQ
What programming language is mcp-server-datahub built with?
mcp-server-datahub is built using Python.
How do I run the server?
You can run the server by activating the virtual environment and executing the command `mcp dev mcp_server.py`.
Is there any documentation available?
Yes, you can find the documentation on the project's GitHub page.