Contains echo tool & calculator tool
uvx --from git+https://github.com/ritzvik/samplemcp.git@main samplemcp
Contains functions from Adrien's MCP server for Cloudera AI workbench
To run as CLI
CLOUDERA_ML_HOST=dummy CLOUDERA_ML_API_KEY=dummy uvx --from git+https://github.com/ritzvik/samplemcp.git@main workbenchmcp
{
"mcpServers": {
"cloudera-ml-mcp-server": {
"command": "uvx",
"args": [
"--from", "git+https://github.com/ritzvik/samplemcp.git@main", "workbenchmcp"
],
"env": {
"CLOUDERA_ML_HOST": "https://ml-xxxx.cloudera.site",
"CLOUDERA_ML_API_KEY": "your-api-key"
}
}
}
}
Contains tools for querying Hive tables through Cloudera ML data connections
To run as CLI
CONNECTION_NAME=your-connection USERNAME=your-username PASSWORD=your-password uvx --from git+https://github.com/ritzvik/samplemcp.git@main hivetablemcp
{
"mcpServers": {
"hive table mcp server": {
"command": "uvx",
"args": [
"--from", "git+https://github.com/ritzvik/samplemcp.git@main", "hivetablemcp"
],
"env": {
"CONNECTION_NAME": "your-hive-connection-name",
"USERNAME": "your-username",
"PASSWORD": "your-password"
}
}
}
}